hi..
i want to know that is it possible to load the data into excel sheets?
If so then how to load 1-50 records into 1st sheet,51-100 records into 2nd excel sheet and so on up to 5 sheets of a single excel file.
Please help me how to do this..
Thanks..
Hi
You need to set a dynamic sheet name and append the records into the existing file and sheet. I want to know what does the sheet name looks like? "Sheet0", "Sheet1", "Sheet2"?
Best regards
Shong
Hi Shong,
Am able to write to multiple sheets using the above job design. But i need to write data into next sheet once the first sheet gets filled up with data in maximum no of rows(65K).. My input will incrementally increase..
Manoj
Hi Change the no of records to 65k , context.sheetName="Sheet"+(input_row.id/65000+1); Best regards Shong
During above idea implementation , am getting 2 sheets in excel as my number of rows is 90K. But in those sheets there are only one record in each sheet. I mean ,in the first sheet the 65th thousand record is there in first row and similarly the same happens in second sheet. I thin the data is over written. Plz guide me further.
Manoj