Concat multiple list items together
Using JMP12.2 - I'm looking for a fast way to concat list items together from two different lists in a 1 to 1 fashion - assuming the lists have the same number of items. This will be used For Each Row in very large tables - so I prefer no iterative function if possible. Here is an example of what I want to achieve: list1 = {"a","b","c","d","e","f","g"};list2 = {"1","2","3","4","5","6","7"}; Accept...