after look into the original file, I realized that there is one "text: field have "space" in the value, for example:
this original file: (this is not a real data, the actual data have more variables including date field).
ID
visit
value1
Name
value3
value4
100
1
Asia
Lita wong
Honda
credit
200
1
USA
Irene
Tesla
cash
the "Name'"="Lita Wong" have a space in between. so when I export it to csv file, the the 'Name' shift to next row.
I did not realize it shifted to the next row, I thought it was missing ID and visit after export to csv file.
the output of csv looks like this:
ID
visit
value1
Name
value3
value4
100
1
Asia
Lita
wong
Honda
credit
200
1
USA
Irene
Tesla
cash
so after I deleted the space, from Lita Wong to Litawong, the csv file looked like this:
ID
visit
value1
Name
value3
value4
100
1
Asia
Litawong
Honda
credit
200
1
USA
Irene
Tesla
cash
this is what i expected, and then I saved it to excel file.
... View more