05-27-2015 09:16 AM - edited 05-27-2015 09:18 AM
I have 1D array of numeric numbers (COLUMN)
and
1D array of string (COLUMN)
I want these two 1D columns to come next to each other and become 2D array.
1st column 2nd column
A 1.2
B 1.01
C 2
D 8
.
.
.
05-27-2015 09:18 AM
05-27-2015 09:21 AM
i want 2D of these 2 columns not 1D 😞
05-27-2015 09:26 AM
Then format your numbers into strings and then combine to make your 2D array.
05-27-2015 09:27 AM
concatenate array but your 1D arrays must be of same type
05-27-2015 10:13 AM
i have converted my numeric data into string using BYTE ARRAY TO STRING and combined it with 1D string data but still it is not producing 2D.
BYTE ARRAY TO STRING is giving just one String element not all elements (not array)
thanks
05-27-2015 10:23 AM