How can you separate a string into separate columns delimited by quotes (""
) without using the text to column feature... as in
A1={"WATERBOTTLES","HOWMANY":"8","HOWMUCHDOTHEYCOST":"1"}
B1=WATERBOTTLES, HOWMANY : 8, HOWMUCH DOTHEYCOST : 1
How can you separate a string into separate columns delimited by quotes (""
) without using the text to column feature... as in
A1={"WATERBOTTLES","HOWMANY":"8","HOWMUCHDOTHEYCOST":"1"}
B1=WATERBOTTLES, HOWMANY : 8, HOWMUCH DOTHEYCOST : 1
You can replace the string "," into tab(\t) in Textpad. and copy paste the value in excel.
(Let me know, if you want screen shot, i can add it)
Each value will appear in different column.