excelize icon indicating copy to clipboard operation
excelize copied to clipboard

Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets

Results 185 excelize issues
Sort by recently updated
recently updated
newest added

**Description** `SetColStyle` and `SetRowStyle` exist but there is no equivalent read method to read a column/row's style. Ideally this would return col/row styles without parsing the entire worksheet's XML (if...

I use excelize to generate reports. Recently there is a need to label the sensitivity of these reports. In Excel you do this by going to HOME->Sensitivity-[choose sensitivity leve] My...

enhancement

I want to do it. Why is it enable by default?

enhancement

### Discussed in https://github.com/qax-os/excelize/discussions/1276 Originally posted by **thomascharbonnel** July 11, 2022 Hello, First, thanks a lot for the amount of work you have put into this library, it's great! I'm...

Unless I am reading the doc from, I suppose by passing the GetCellValue with the option RawCellValue set to True: ```` cell, err := f.GetCellValue(sheet, cellLoc, excelize.Options{ RawCellValue: true, })...

I creating horisontal bar chart, but font color for legends is light gray and hard to read, i use Excel 2016 ![shot1](https://user-images.githubusercontent.com/417082/50461713-4fea9080-09d4-11e9-9f8d-8f7b400d7052.png)

enhancement

# PR Details ## Description > Several errors are never checked against Changes regarding error handling * some getter funcs now just return a pointer, there are new `New*()` funcs...

size/XXL

**Description** Code has multiple unhandled errors and just continues running, risking potential crashes, ignoring bad parameters, etc. instead of checking and handling or returning the error. PR coming up right...

enhancement

![image](https://user-images.githubusercontent.com/1963102/38090132-41dc9f92-336a-11e8-9f51-dc51c8581eb9.png)

As you know, excel will convert "101,102" to "101102" as number format?So how can i get the original value "101,102". Or how can I convert all my cells to string...