Hello,
I thought doing a text delimiting function would give me the desired output, but it doesn't. And I have spent a good bit of time googling to no avail.
I want to take a text (csv) file that has data like this:
-----------
Column name1
dataA
dataB
dataC
,Column name2
dataD
dataE
,Column name3
dataF
dataG
dataH
dataI
.
.
.
---------------
And give me an excel spreadsheet like this:
Column name 1 | Column name 2 | Column name 3 | ....
data _____________dataD__________dataF
dataB_____________dataE__________dataG
dataC___________________________dataH
________________________________dataI
----------------
Notice, I am using underscore for formatting since the forums strip out all the white spaces I tried to add.
Your help is extremely appreciated!
I thought doing a text delimiting function would give me the desired output, but it doesn't. And I have spent a good bit of time googling to no avail.
I want to take a text (csv) file that has data like this:
-----------
Column name1
dataA
dataB
dataC
,Column name2
dataD
dataE
,Column name3
dataF
dataG
dataH
dataI
.
.
.
---------------
And give me an excel spreadsheet like this:
Column name 1 | Column name 2 | Column name 3 | ....
data _____________dataD__________dataF
dataB_____________dataE__________dataG
dataC___________________________dataH
________________________________dataI
----------------
Notice, I am using underscore for formatting since the forums strip out all the white spaces I tried to add.
Your help is extremely appreciated!