Hello
I'm a newbie. I'm trying to parse data and applying columns name from another dataset.
Basically I have one data set where I have all my columns name
Another one where I have my data
| Data column |
| Data 1 2 3 4 |
| Other data 1 2 3 4 |
| More Data 1 2 3 4 |
I have been able parse data using regex tool separating text from figures. My issue is that I have to rename manually my columns in the regex output tool instead of applying automatically the columns names from my 1st dataset.
I would like my output to be like this:
| Data column | A | B | C | D |
| Data | 1 | 2 | 3 | 4 |
| Other data | 1 | 2 | 3 | 4 |
| More Data | 1 | 2 | 3 | 4 |
Thanks for taking the time to answer me
Benoit