Hi,
I have a field in my data, which I want to divide into columns. However, I cant use Text to Columns tool as data in my columns is not ordered.
I already have list of columns that should be made.
Sample of my data:
| Tags |
RUNS:1,VERSION:7.2,OUTPUT:TXT, |
VERSION:7.1,RUNS:1,OUTPUT:CSV, |
RUNS:1,OUTPUT:CSV,VERSION:7.2, |
| OUTPUT:CSV,OWNGROUP:Y,VERSION:7.1,REASON: OTHER |
Result I want to get:
| RUNS | VERSION | OUTPUT | OWNGROUP | REASON |
| 1 | 7.2 | TXT | | |
| 1 | 7.1 | CSV | | |
| 1 | 7.2 | CSV | | |
| | 7.1 | CSV | Y | OTHER |