You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we've added slicers to filter pivot tables, is that supported? If i remove the slicers, it works but excel is corrupted if i leave them in the template
NPOI Version 2.6.2
File Type - [ ] XLSX
Upload the Excel File
Template.xlsx
Please attach your original Excel File to help us reproduce the issue
Reproduce Steps
I have taken all the logic out of this, simple using a template and creating new excel with it doesn't seem to work
code :
MemoryStream outputStream = new MemoryStream();
using (Stream templateStream = assembly.GetManifestResourceStream(resourceName))
{
IWorkbook workbook = new XSSFWorkbook(templateStream);
workbook.Write(outputStream, true);
outputStream.Position = 0;
}
return File(outputStream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "GP-Summary.xlsx");
Issue Description
basically similar to #419 but for filters/ slicers
The text was updated successfully, but these errors were encountered: