xl
xl copied to clipboard
Pure nim library to create, read, and modify Excel files.
When I'm assigning a formula to a cell that has a reference to a file using a case sensitive path and I then save the workbook and open it in,...
Closes #5 . This fixes reading dates from xlsx files. Be aware that LibreOffice does not show dates before 1900-03-01 correctly.
I encountered a bug when dealing with dates in a .xlsx file created using LibreOffice. Date computed by `xl` are usually 2 days off the real date. According to [this...
I did not find an option to enable `autoFilter` when i diff an xlsx file where i just enable auto filter i see in the `sheet1.xml`: ``` ``` is there...
I would like to iterate all the sheets in a workbook. something like: ``` for sheet in workbook.sheets: .... do something.... ``` the workbook has a sheets seq, but it...
In the case of cells with ruby, ruby is added to the cell value
Could you explain how can I add a boolean cell? I looked at the code and, despite that `ctBoolean` is considered, it looks like there is no `value=` covering the...
For some reason I am struggling reading a file exported from Palantir. I created an example that is not working for me: ```nim import xl proc main = var wb...