downloading excel sheet

0
i need to use excel exporter in that i need to download only the first 10 records and after it is exported it should get removed from the table and the next 10 records should get downloaded how to achieve this 
asked
2 answers
5

Hi Nithya,

You have to maintain seperate attribute to have count on the downloaded records(default set to 0)

While exporting , retrieve with xpath offset:$count(from attribute)  limit:10

Change the attribute as $count+10 after exporting

 

Hope this helps!

answered
1

Hi Nithya,

 

Try with customized microflow to export the records and after exporting the records delete the exported records from the database.

Moreover, this blog https://www.mendix.com/blog/limits-and-offsets/ would help you to achieve your requirement.

 

Thanks!

 

 

answered