Code: Select all
ACTIVE,ITEM,DESCRIP,QTY
="N",="01600676",="ABC DEF GHI JKL, 15,600MAH",0.000
="Y",="01623056",="123456, 654321, TEST, TEST",1.000
="Y",="01623057",="A,B,C,D,E,F,G,H,I",1.000
"N","01600676","ABC DEF GHI JKL, 15,600MAH",0.000
"Y","01623056","123456, 654321, TEST, TEST",1.000
"Y","01623057","A,B,C,D,E,F,G,H,I",1.000
"N",="01600676","ABC DEF GHI JKL, 15,600MAH",0.000
"Y",="01623056","123456, 654321, TEST, TEST",1.000
"Y",="01623057","A,B,C,D,E,F,G,H,I",1.000
The top set is the output from Array2CSV(). If you copy these lines to a .CSV file and then open with Excel you'll see that the commas within the strings cause new columns.
Without the = it works fine.
From what I can see it only needs to be used to prevent a string of numbers from being auto converted to a number in Excel.