Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
ShastriV
Contributor II
Contributor II

Limit no of rows in tFileoutputExcel 6.3

Hi,

 

I want to Limit no of rows per sheet in output excel 2007 file.

eg: I want to write 100k rows in each excel sheet.

 

How should I achieve this in excel 2007?

Labels (2)
3 Replies
akumar2301
Specialist II
Specialist II

You need to split it before writing to excel may be using tfileoutputdelimited(advance option delete)

Then loop through list of generated by and write to same excel but separate sheet.
Anonymous
Not applicable

you can try using sequence generator in tMap. create a new variable in transformation tab (middle portion) and assign a value auto increment it +1 and then use the same as filter (eg. count < 100001) in output tab (last portion). 

In short segregate records in multiple outputs based on count.

ShastriV
Contributor II
Contributor II
Author

Thank you Ajinkya, I will try your solution.