Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to export .csv or .xls of an object table (note is a table not a straight table chart).
I want my export have only some columns (4,5 columns) not all 50 columns, is possible?
thanks
I suggest making a table with just the columns you want to export.
sorry this not a solution, sure i can do it and i thought about that, but i ask if it can be do with a table withouth create another element
Hi,
you could add condition to each column.
For example:
vColumn=1 or vColumn=' ' for columns that you want to show
vColumn <> 1 for column that you don't want to show
Than create a button that:
1) set vColumn = 1
2) export table
3) set vColumn = ' '
Daniele, I agree with Mike on this one, the best option you have is to create another Table Box object with just the two columns to perform the export you want, as there is no means to just export 2 columns from the larger one as far as I know. You could use a Button with an action to do things and maybe hide the smaller Table Box from the users, but that is the best I have.
Regards,
Brett