Skip to content

Commit 2bd359b

Browse files
committed
fix pivot fails in case of multi columns and multi data
1 parent c492220 commit 2bd359b

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

pivotTable.go

+7
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,13 @@ func (f *File) addPivotColFields(pt *xlsxPivotTableDefinition, opt *PivotTableOp
485485
})
486486
}
487487

488+
//in order to create pivot in case there is many Columns and Many Datas
489+
if len(opt.Data) > 1 {
490+
pt.ColFields.Field = append(pt.ColFields.Field, &xlsxField{
491+
X: -2,
492+
})
493+
}
494+
488495
// count col fields
489496
pt.ColFields.Count = len(pt.ColFields.Field)
490497
return err

pivotTable_test.go

+14
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,20 @@ func TestAddPivotTable(t *testing.T) {
135135
ShowColHeaders: true,
136136
ShowLastColumn: true,
137137
}))
138+
//Test Pivot table with many data, many rows, many cols
139+
assert.NoError(t, f.AddPivotTable(&PivotTableOption{
140+
DataRange: "Sheet1!$A$1:$E$31",
141+
PivotTableRange: "Sheet2!$A$56:$AG$90",
142+
Rows: []PivotTableField{{Data: "Month", DefaultSubtotal: true}, {Data: "Year"}},
143+
Columns: []PivotTableField{{Data: "Region", DefaultSubtotal: true}, {Data: "Type"}},
144+
Data: []PivotTableField{{Data: "Sales", Subtotal: "Sum", Name: "Sum of Sales"}, {Data: "Sales", Subtotal: "Average", Name: "Average of Sales"}},
145+
RowGrandTotals: true,
146+
ColGrandTotals: true,
147+
ShowDrill: true,
148+
ShowRowHeaders: true,
149+
ShowColHeaders: true,
150+
ShowLastColumn: true,
151+
}))
138152

139153
// Test empty pivot table options
140154
assert.EqualError(t, f.AddPivotTable(nil), "parameter is required")

0 commit comments

Comments
 (0)