Changing rows into columns
Hi,
I have a huge data of below format:
1 2 3 4 5
6 7 8 9 1
8 5 6 9 7
2 3 6 5 9
I need to read the data in following format
1
2
3
4
5
6
7
8
9
1
8
5
6
9
7
2
3
6
5
9
Could anyone please help me, how to change from above format to below format??
Thanks in advance
|