OpenXLSX
OpenXLSX copied to clipboard
A C++ library for reading, writing, creating and modifying Microsoft Excel® (.xlsx) files.
Building with VS2022 on Win10 x64, XLSheet reports a C4242 possible loss of data trying to assign unsigned int to an int16_t. Easy fix is to change the temporary vector...
This patch disables the build of documentation, samples, tests and benchmarks when used as a library with `add_subdirectory()`. It changes the default behavior, but the option can still be overridden....
There is a crash when attempting read .csv or .xls file. Attached is a csv file as an example. [1.csv](https://github.com/troldal/OpenXLSX/files/9310281/1.csv)
There is no API to retrieve named ranges in a file. It would be good to have this capability.
HI, Program crash in algorithm function max_element on row with _seek_wraped(). When I try open XLSX file (with numbers in cells only and saved by LibreOffice Calc) program crash. And...
I tried to use saveas to save file and it runs without any exception even save failed. Any idea how to know ?
This test fails ```cpp XLDocument doc; doc.create(fileName); auto wks = doc.workbook().worksheet("Sheet1"); wks.cell("A1").value() = "Hello OpenXLSX!"; std::stringstream sstream2; sstream2
add new methods to class XLSheetBase for conversion of column numbers to names and vice versa (e.g. 703 "AAA") add test for these new methods re-enable most of the test...
1. I think it is possible to unicode name of sheet or smth? Isnt it? 2. .cell("A:1") need to create string every time. May be allocation or smth, why you...