I am trying to take a single column from my data table and store each unique value to a list.
Ex:
column is named "Type" and the values in rows 1-6 are "A,B,C,A,B,C"
I currently have:
dtbl = Current Data Table();
newlist = column("Type") <<Getvalues();
Show(newlist);
which returns "A,B,C,A,B,C", but I am trying to get a list which would contain "A,B,C" instead. Any help would be appreciated (I am also new to JSL)