Hi - I have a dataset that looks like something like this, where each column has delimited values:
| criterion one | criterion two | code |
| 1,2,3,2 | 2,3,4,1 | ABC,REC,TVD,INJ |
and I want it to be split up to look like this but can't figure out how to use the text to column tool correctly:
| criterion one | criterion two | code |
| 1 | 2 | ABC |
| 2 | 3 | REC |
3 | 4 | TVD |
| 2 | 1 | INJ |
I found a way that sort of works by using text to columns instead of text to rows but it involves knowing exactly how many values there are to split up which will not always be the case, since this is dynamic workflow that will be reading and joining files from a directory. I attached an example worrflow of the kind of dataset I want to split into rows. Please help me! Thank you in advance.