I have a DataTable with multiple columns including AccountNumber, Year, and Month. I am exporting the information in this table to an Excel workbook. Since this table has the potential to be extremely large, I must check the number of records in the table (since Excel can only have 65536 rows or something like that. If the original table is small enough, I need to put all of the records in a single worksheet. If there are too many records for one worksheet, I need to separate the records into multiple worksheets based on AccountNumber. Additionally, if there are too many records for a specific AccountNumber then I need to split that AccountNumber into multiple worksheets based on Year. If a specific Year still has too many records then I have to split them by Month.
For example:
If I have a total of 500,000 records, I must split them by AccountNumber getting:
Worksheet Name ---- Number of Records
- 1111 ---- 150,000
- 2222 ---- 50,000
- 3333 ---- 100,000
Then I would need to split Accounts 1111, and 3333 into multiple worksheets based on the Year. I would then have something like this:
Worksheet Name ---- Number of Records
- 1111 - 2010 ---- 50,000
- 1111 - 2011 ---- 100,000
- 2222 ---- 50,000
- 3333-2010 ---- 50,000
- 3333-2011 ---- 50,000
Then, Since 1111 - 2011 is still too large I would have to split that one based on Month, finally giving:
Worksheet Name ---- Number of Records
- 1111-2010 ---- 50,000
- 1111-201105 ---- 30,000
- 1111-201106 ---- 30,000
- 1111-201107 ---- 40,000
- 2222 ---- 50,000
- 3333-2010 ---- 50,000
- 3333-2011 ---- 50,000
The code that is being used to create the Excel file is a project that was written by my company. To make it simple, the function accepts a DataTable and writes out the records in the DataTable in the format of an Excel spreadsheet. Any ideas on how I can do this without making anymore calls to the database? Thanks in advance.