Add variable in Graph builder
I have data table with multiple columns and rows
I want to loop through each column and add it to graph builder on x -axis
This is my simple script
dt = Open( filepath );
all_cols = dt << Get Column Names( "String" );
cols_to_plot={};
For Each ({col}, all_cols,
If(col == "A" || col == "B",,
Insert into (cols_to_plot, col);
)
);
graph = dt << ...