Not able to get proper export to excel result

0
Hi All, I’ve created a button which will download excel sheet using microflow. I have 4276 records in app and when I download the excel sheet it shows only 324 records. I have debugged it and it shows the 4276 records but these records are not downloaded in excel sheet. I have attached screeshots below, Please suggest me solution, any suggetion will be appreciated.   Thanks!  
asked
1 answers
-1

I suppose you’re not using the Excel exporter module, but rather the built-in feature of a Data Grid widget. Unfortunately, when the grid data source is a microflow, the grid will only export the current page to Excel. It does not even make a network request when you export.

 

To keep using the built-in Excel export you need to create a persistent entity and populate this entity with your results in the microflow. Then make this entity the Data Grid data source.

 

Alternatively, you can install the Excel exporter module and add an regular action button to call the export microflow. However, you will have to manually configure an excel template.

answered