I have a selfmade klip with a table of 10 columns with data from databases. Everything looks fine when displayed inside the klipfolio dashboard but when I click 'download as csv/excel' I get a csv-file in which each column appears twice in the form:
columnA,columnA,columnB,columnB,...
abc, "", 123, "", ...
xyz, "", 789, "", ...
I would like the downloaded file to include each column only once as in
columnA,columnB,...
abc, 123, ...
xyz, 789, ...
The table doesn't use drill-down and has no hidden columns.
What can I do to achieve this?