Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
There are different number of rows and columns supported by Excel formats. For example, XLS supports 65536 rows and 256 columns while XLSX supports 1048576 rows and 16384 columns. If you want to know how many rows and columns are supported by given format, you can use Workbook.Settings.MaxRow and Workbook.Settings.MaxColumn properties.
The following sample code creates workbook first in XLS and then in XLSX format. After creation, it prints the values of Workbook.Settings.MaxRow and Workbook.Settings.MaxColumn properties. Please see the console output of the code given below for your reference.
Maximum Rows and Columns supported by XLS format.
Maximum Rows: 65536
Maximum Columns: 256
Maximum Rows and Columns supported by XLSX format.
Maximum Rows: 1048576
Maximum Columns: 16384Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.