I'm new here and I hope to seek for your assistance on converting data format of my excel to csv.
This is my raw data in excel in different row and cells:
A B C D E F
1 2 3 4 5 6
2 3 4 5 6 7
3 4 5 6 7 8
I would like to convert all data into this format containing 1 column and different rows:
A;B;C;D;E;F
1;2;3;4;5
2;3;4;5;6
3;4;5;6;7
As I have large volume of data to be processed, a convenient way of converting the data is really needed.