excelize
excelize copied to clipboard
Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets
**Description** Excelize can currently set a page filter for a pivot table, but does not seem to support creating label/value filters. When running the sample code from https://xuri.me/excelize/en/pivot.html#AddPivotTable there is...
Description: I'm using the excelize module to populate data into an Excel file and am subsequently calling the UpdateLinkedValue function to trigger recalculations for all formulas based on the newly...
**Description** I found the following three problems when using excelize's floating picture function, hoped to add the attribute `editAs="oneCell"` **Probrem 1:** Use the floating image in the table exported by...
**Code to reproduce the issue** ``` package main import ( _ "image/jpeg" "os" "path/filepath" "github.com/xuri/excelize/v2" ) func addPictureToA1WithOffset(f *excelize.File, data []byte, ext string, offset int) error { enable := true...
**Description** I would like to suggest the extension of the Table type to support the enabling and disabling of the Total Row for Excel tables. It is possible to simulate...