Hi,
I'm trying to separate data stuck in once cell of file hosted on webpage, we are able to get it via download tool
1- using delimiter \n we are able to split it into multiple rows
| 1,2,abc,dfg |
| 4,xyz,xdf,fdgd,fhdhf |
| 5,ght,asdf,qwe |
2 - now we need to split the data into columns using delimiter comma ","but each row data is not fixed we are not sure how many column will be there so we can split it to columns
because using text to column we need to define how columns
| 1 | 2 | abc | dfg | |
| 4 | xyz | xdf | fdgd | fhdhf |
| 5 | ght | asdf | qwe | |
Im using text to column tool , relevant tools I could use with this one. Can anyone help me with this one pls?