1.How many Excel rows can be uploaded to a data table at a time, Is there any constraints and if so please mention maximum row count.
2. When i am exporting worksheet.Cells.MaxDataRow and worksheet.Cells.MaxDataColumn from worksheet of excel to data table, i am getting three addtional empty rows at the bottom. Please recommend the possible to avoid it.
Please see the below piece of code.
ds.Tables.Add(worksheet.Cells.ExportDataTableAsString(4, 0, worksheet.Cells.MaxDataRow + 1, worksheet.Cells.MaxDataColumn+1, true));
eg: total no of Datarows are 23 and i am getting 26 rows in datatable which includes
three as empty rows.
3. Maximum no. of worksheets that can be uploaded at a time.