OK.
DT1 has 1 column on interest named DUT#
DT2 has a variable number of columns.
I want to script a join that takes all the columns on DT2 and joins it with the single DUT# column in data table 1 by using Row numbers.
What is Select and selectwith expecting, a list, a string, .... "A pretty please"
How do I script this ? The manual is completely worthless.
Current Data Table( CT );
ListofPads = CT << get column names;
CT1 = Data Table( CT ) << Join( With( Data Table( DUTTable ) ),select(ListofPads),selectwith(:DUT#), By Row Number);