How to create a indicator column for double data with a formula
I' dlike to create a formula indicator column for double data by applying the following JSL Code: dt << Clear Column Selection();
dt << Select Duplicate Rows();
dt << Name Selection in Column( Selected( 1 ), Unselected( 0 ) );
dt << Clear Select();
Despite I 'm getting the right results, the code creates a lot error messages. It would be great if the code could be improved.