QtXlsxWriter icon indicating copy to clipboard operation
QtXlsxWriter copied to clipboard

How to Get Row Count and Column Count?

Open wanghai1988 opened this issue 8 years ago • 2 comments

when I read the file I want to kown the Rows and Columns,How I can get it use API? thanks

wanghai1988 avatar Nov 18 '16 03:11 wanghai1988

The row and column count are constants: 1,048,576 rows, 16,384 columns. See https://support.office.com/en-gb/article/Excel-specifications-and-limits-16c69c74-3d6a-4aaf-ba35-e6eb276e8eaa

VSRonin avatar Dec 09 '16 18:12 VSRonin

Document xlsx("xxx.xlsx"); xlsx.dimension ().lastColumn (); xlsx.dimension ().lastRow ();

heavenyc avatar Mar 01 '17 10:03 heavenyc