-
I am using code similar to
xlnt:: workbook wb;
wb.load("/input.xlsx");
auto ws = wb.active_sheet();
I am getting an error at wb.load.
![image](https://user-images.githubusercontent.c…
-
I use xlnt 1.3 with visual Studio 15.9.4.
I modified a simple sample and try create a new sheet after open a workbook:
#include
#include
int main()
{
xlnt::workbook wb;
xlnt::worksheet …
-
I was testing xlnt output against the output from libxlsxwriter, when writing the same data the xlnt xlsx file was always larger. After doing some digging it appears that the internal xml files had wh…
-
Using pretty default setted VS2017. Compiling simple demo from readme in Debug mode works fine, xlsx file creates with data. But when I compile same demo in Release mode - there is no xlsx file genera…
-
Sadly, this project seems to be unmaintained by now. The last commit is from 2022. Issues and PRs continues to grow.
@tfussell has done a great job creating and maintaining this repo for many years…
-
Use the following code:
xlnt::workbook wb;
xlnt::worksheet ws = wb.active_sheet();
ws.cell("A1").value(5);
ws.cell("B2").value("string data");
ws.cell("C3").formula("=RAND()");
ws.merge_ce…
-
CMake support is pretty good in this library (supporting install and even uninstall, however it does not currently support` find_package(xlnt CONFIG)` or` find_package(xlnt MODULE)`. I am writing a M…
-
throw xlnt:exception("counts don't match")
-
Although this is not strictly a problem with xlnt stand alone, unfortunately it does not play well with vcpkg. I saw a long discussion between the author and Microsoft over in the [vcpkg github](http…
-
I am relatively new, so not sure if this section is the right place to put forward contributions, so apologies in advance if this is the wrong section.
Anyway, I came up with a function `xls_io` wh…