Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
Hi there,
I use Data Export Extension with for excel and pdf exports but i can't order columns. I had found solution in here then i tried CSV Parser Functions. Yes, it worked just for newReportInfoTable but result is like attachment;
How can i order columns when exporting?
..
..
..
..
var params = {
inputInfoTable: reportInfoTable,
orderedFieldList: 'Period,AverageMilSpeed,AverageEntryCoilDiameter,AverageExitCoilDiameter,AverageExitWidth'
};
result: INFOTABLE
var newReportInfoTable = Resources["CSVParserFunctions"].GetOrderedFieldOutput(params);
var params = {
infotable: newReportInfoTable
};
var result = me.ExportInfotableAsExcel(params);
Thanks
Sorry, what is the problem with the attachment? I am not sure I understand.
Hi Gokhan Cakiroglu, So, the order is not correct in CSV as compared to the Service. Did you get any error in the logs?
Try passing the orderdedFieldList as an array if it helps.