Deleting multiple columns based on column name
Hi , I want to delete multiple columns based on some specific strings they contain in column name. I can do it for single name. But for multiple name it does not work. col_list = dt << get column names(string);
for (i = nitems(col_list), i > 0, i--,
if (contains(col_list[i], "SAVED_IMAGES", "sw_", "HH"),
remove from(col_list, i);
);
);Shows this error dt = Current Data Table();
col_list = dt << get colu...
dale_lehman