Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not Able to Write Last Cell in Pivot Table #809

Closed
GalakFyyar opened this issue Jul 2, 2024 · 4 comments · Fixed by #819
Closed

Not Able to Write Last Cell in Pivot Table #809

GalakFyyar opened this issue Jul 2, 2024 · 4 comments · Fixed by #819

Comments

@GalakFyyar
Copy link

I have the following code:

package main

import "github.com/tealeg/xlsx/v3"

func main() {
	f := xlsx.NewFile()
	sh, _ := f.AddSheet("Sheet1")

	// Write Colors (y-axis).
	colors := []string{"Red", "Green", "Blue"}
	for i, clr := range colors {
		cell, _ := sh.Cell(i+1, 0)
		cell.SetString(clr)
	}

	// Write Numbers (x-axis).
	numbers := []string{"1", "2", "3"}
	for i, num := range numbers {
		cell, _ := sh.Cell(0, i+1)
		cell.SetString(num)
	}

	f.Save("Bug.xlsx")
}

As you can see I'm trying to write three colors ("Red", "Green" and "Blue") as the Y axis.

However the resulting file looks like this, with the last color is missing.
Screenshot 2024-07-02 014138

Interestingly, I'm able to write the last color if I either write the X axis first, or don't write the X axis at all.

Go version: v1.18
Xlsx version: v3.3.7

Is this expected behaviour? Am I missing some sort of row allocating step?

@tobiashort
Copy link

Same here

	for idx, event := range events {
		col := idx+1
		eventColIndexes[event.ID] = col
		cell := Must2(sh.Cell(0, col))
		cell.SetDate(event.Date)
		cell.SetFormat("d.m.")
	}

	for idx, member := range members {
		row := idx+1
		memberRowIndexes[member.ID] = row
		cell := Must2(sh.Cell(row, 0))
		cell.SetString(member.Name)
	}

	for _, attendance := range attendances {
		row := memberRowIndexes[attendance.MemberID]
		col := eventColIndexes[attendance.EventID]
		cell := Must2(sh.Cell(row, col))
		switch attendance.Status {
		case AttendancePresent:
			cell.SetString("A")
			cell.GetStyle().Fill.PatternType = "solid"
			cell.GetStyle().Fill.FgColor = xlsx.RGB_Dark_Green
			cell.GetStyle().Font.Color = xlsx.RGB_Black
		case AttendanceLate:
			cell.SetString("H")
			cell.GetStyle().Fill.PatternType = "solid"
			cell.GetStyle().Fill.FgColor = xlsx.RGB_Light_Green
			cell.GetStyle().Font.Color = xlsx.RGB_Black
		case AttendanceExcused:
			cell.SetString("E")
			cell.GetStyle().Fill.PatternType = "solid"
			cell.GetStyle().Fill.FgColor = xlsx.RGB_Light_Red
			cell.GetStyle().Font.Color = xlsx.RGB_Black
		case AttendanceNotExcused:
			cell.SetString("X")
			cell.GetStyle().Fill.PatternType = "solid"
			cell.GetStyle().Fill.FgColor = xlsx.RGB_Dark_Red
			cell.GetStyle().Font.Color = xlsx.RGB_White
		}
	}

image

@tealeg
Copy link
Owner

tealeg commented Sep 13, 2024

Sorry for the delayed response. Looking into this now.

@tealeg
Copy link
Owner

tealeg commented Sep 14, 2024

OK, so the first thing to know is that if you reverse the order you write in (go breadth first) then the problem goes away. It appears that the final row doesn't get appended to the cellstore when we step back from it to the first row. Trying to find out why now.

tealeg added a commit that referenced this issue Sep 14, 2024
Fixed issue #809, losing rows from cellstore when moving backwards
@GalakFyyar
Copy link
Author

Thank you @tealeg !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants