I have created one report in zbo. That repotr having around 73000. But if I save this report in excel format first 65000 rows only diplayed in the first sheeet remaining rows are not displayed here.
How can i save the report have more than 65000 rows.
Short answer: You can’t as Excel wasn’t designed as a database application but as a spreadsheet.
Long answer: Macro loading.
Save the data as text delimited, then invoke the load of the first 65000 lines, then another load of the lines starting from row 65001 onto the next spreadsheet.
If you are well versed with VB you might be able to write a macro to be able to be used within BO.
One thing you could do is flow the rows in excess of 65000 to new worksheets within the same spreadsheet (xls file). Use the RowIndex function to create a variable. Then filter on the variable where the value is between 1- 65000. Then duplicate the report and filter on the RowIndex variable 65001 - 130000, etc . . .
“Save the data as text delimited, then invoke the load of the first 65000 lines, then another load of the lines starting from row 65001 onto the next spreadsheet.”
Either solution will work. Mine is elegant and self contained in BO and no macros or scripting are required. Mine will produce the desired result without user intervention.
all right. i give up. it can’t be done. unless you introduce the row count to the raw data. if you use the rowindex function you get a “list of values is empty” message.
Just a side note for general use. But the inforamtion that I have seen for the next version of office says that they will be expanding Excel’s data holding capacities.