Delete string that does not contain in the list
Hi, I'm trying to write a jsl code that removes numbers from a row if they are not present in a given list. The list is in the table call "List values" Bins values I want to modify:For example: the jsl script should delete "444" from row 7 in the above table and likewise for other rowsFinal result: Here's the codeNames Default To Here( 1 );
dt_list = Data Table("List values");
dtt = Data Table("B
...