QXlsx icon indicating copy to clipboard operation
QXlsx copied to clipboard

Excel file(*.xlsx) reader/writer library using Qt 5 or 6. Descendant of QtXlsxWriter.

Results 143 QXlsx issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/46395124/179878250-fca63baa-318a-458e-b254-a68b7326ab9b.png) ![image](https://user-images.githubusercontent.com/46395124/179888139-9a014f66-b7be-4af8-b6c6-8d342790e638.png) ```cpp int main(int argc, char *argv[]) { QCoreApplication app(argc, argv); Document xlsxR("Test.xlsx"); if ( xlsxR.load() ) // load excel file { int row = 1; int col =...

The document pointer is obtained, but there is only one row and the number of columns is 0,In fact, the EXECL file has 238 lines and 34 columns

question 질문

Hi! I'm working on my project with QXlsx and thanks very much for this sharing! Just a issue that I found. After I `addSeries` and `setChartLegend`, chart and legend are...

help wanted 도움 필요

Hi, First your lib is very good. Thanks. In the Excel example, I have no found example on the filter columns. Is it implemented ? Thanks in advance, Serial86

enhancement 개선점
help wanted 도움 필요
question 질문

Hello I found problem with parsing customHeight row attribute. Problem is with with this code: info->customHeight = attributes.value(QLatin1String("customHeight")) == QLatin1String("1"); fix is: info->customHeight = (attributes.value(QLatin1String("customHeight")) == QLatin1String("1") || attributes.value(QLatin1String("customHeight")) ==...

set more colums in one page from ![77D5DFC2-C72A-4BEC-A00A-EC3374894A5F](https://user-images.githubusercontent.com/12489266/158747455-dd268519-52fa-4aef-9309-82ce5ed873e5.jpeg) to ![9F144884-353A-483F-BBDD-E9F4790DF3CA](https://user-images.githubusercontent.com/12489266/158747486-97d33630-192c-41c6-b22b-9a8d5b802338.jpeg)

is there a way to set cell data items format?that user can dropdown to select an item.

I can't find the code of 'XlsxFactory' when reading [examples](https://github.com/QtExcel/QXlsx/blob/master/Example.md). Thanks.

Здравствуйте. Я использую Qt 5.12.3. Мне нужно создать проект для работы с электронными таблицами. Я прикрепил к проекту ваши файлы C++. Но Qt не видит многие заголовочные файлы. Как мне...

I want to print xlsx files through qxlsx