Hello,
I have a gallery with options to sort the gallery data. The data comes from a collection made from a sharepoint list. After the data is sorted I have made a button to export the sorted data to excel. When I click the Export to Excel button, it generates an excel file in a specified folder (using flow) but the information within the exported file is very difficult to read making the file almost useless.
Problem:
1) All columns that are not assigned as single lines of text in my SharePoint list, the cell values shown in the exported excel file are shown as {"Value":"JUN 23"} instead of JUN 23. This makes the file very difficult to read and use.
How can I fix this issue in order to get usable data in the excel file that is exported? I have included screen shots of my flow and what the excel file data looks like in my exported file. The code I'm using on the Export to Excel button On Select property is:
ClearCollect(colContractData, ShowColumns('Main Data 5-24', "Title", "field_1", "DIVISIONASSIGNMENT","field_10","ONMCR_x003f_","CMName","COSSPECIALIST1","COSLEAD1", "field_15","field_24","field_25"));
'ExportToExcel'.Run(JSON(colContractData,JSONFormat.IncludeBinaryData & JSONFormat.IgnoreUnsupportedTypes));
Clear(colContractData);
Collect(colContractData,'Main Data 5-24');
I would really, really, appreciate help fixing this issue. Thank you.


