how to achieve Export to excel Functionality by Sorting on Unique column in ascending order in excel.

0
I am trying to achieve to download the Records by in Ascending Order from one column. I am using XLSReport Module(Excel Exporter Module) to Export to EXCEL. But I am unable to achieve the sorted format of the records.  I checked by debugger the list of records are as per the unique column, as I sorted the list in Microflow and Committed the desired Objects. But After Download of file, every time the Order is different and it`s not been in sorting Order at all.   Please let me know how to achieve this Export Functionality by Sorting on Unique column
asked
1 answers
0

What I would try to do for simplicity is to avoid using the excel exporter module. 

 

I would use the datagrid 2 export (via javascript) 

 

There's a clip over how to do it here 

 

HOW TO EXPORT AN EXCEL ON DATAGRID 2 | MENDIX 10

 

The advantage is that you will be exporting only what's visible in the grid. So this means you can change the sorting of the datagrid and the export result will match that. 

answered