2
我在網上搜索了很多,但無法找到錯誤的解決方案。數據透視表中列數相同的列索引
代碼
AreaReference areaRef = new AreaReference("A1:T"+ sheet.getLastRowNum());
CellReference cellRef = new CellReference("A2");
XSSFPivotTable pivotTable = summarysheet.createPivotTable(areaRef,cellRef,sheet);
pivotTable.addRowLabel(19);
pivotTable.addColumnLabel(DataConsolidateFunction.COUNT, 19);
問題:我嘗試添加RowLabel對指數19,並且還試圖計算列19
我運行後,它顯示了一個錯誤的文件已損壞。但是,當我更改addColumnLabel中的索引。有用。
任何意見或建議將不勝感激。