Hi,
Have a 2D array R x C in size, C max (column count) = 14.
Is there syntax (without explicit ref e.g. arr(x,1) & arr(x,2) & ... & arr(x,8) ) to join first 8 columns per row?
Psuedo code:
myKey = LEFT(join(arr), 8)where 8 represents 8th column (not 8th char!)
Ideally, without creating a...