I have data in a single cell in the below format
1 NULL 384 JPY 0 2
2 384 555 JPY 0 10
3 555 389 JPY 0 128
4 389 1000 JPY 0 2345
I want to split the data into different columns
Like for example
C1 C2 C3 C4 C5 C6 C7 C8 C9
0 384 555 389 1000 2 10 128 2345
CAn anyone please help how to perform this activity.
1 NULL 384 JPY 0 2
2 384 555 JPY 0 10
3 555 389 JPY 0 128
4 389 1000 JPY 0 2345
I want to split the data into different columns
Like for example
C1 C2 C3 C4 C5 C6 C7 C8 C9
0 384 555 389 1000 2 10 128 2345
CAn anyone please help how to perform this activity.