Select column name using contains function
Hi,
I like to select multiple columns that have names contains a string. I tried below script and no error but the columns does not get selected.
col_list = dt3 << get column names(string);
for( i = 1, i <= N Items( col_list ), i++,
If(Contains( col_list[i], "A_B_C" ),
Column(col_list[i] ) << Set Selected (1)
)
);
When I check col_list, it has all the colums in entire data table. I appreci...