How to convert the name of list into a string?
Hi,I have this script which checks if the list has duplicate elements, and if it does, it sends error message.ColAgain=Function({main}, {duplicate},
duplicate={};
duplicate_r={};
unique={};
For (i=1,i<=Nitems(main),i++,
If (Nrows(Loc(unique,main[i])) == 0,
InsertInto (unique,main[i]),
InsertInto (duplicate_r,main[i])
);
);
For (i=1,i<=Nitem...
saitcopuroglu