Scripting column switcher using variable
I am scripting a dashboard with graph builder in it. I want to add a column switcher that should use a variable as a column list, due to changing columns. For some reason this doesn't work, only first column in a list will show. Column list is created like this: col_list3 = dt << get column names(Numeric);
for (i = nitems(col_list3), i > 0, i--,
if (!contains(col_list3[i], "%"),
remove from(col
...