How to replace an entire column with new content, if it exists
This post is a follow-up and extension of the solved forum here. The following script was developed in that post: Names Default To Here(1);
dt = Current Data Table();
//get the unique character variable list
col9 = Column(dt, "Column 1");
unique_char = Associative Array(col9) << get keys;
nuniquechar = N Items(unique_char); //will be 5, if categories are A, B, C, D, E
unique_aa = Associative A
...