I have a csv comma delimited file that I am trying to parse in Alteryx but running into a few edge cases. It has 8M+ rows and 34 columns.
Some of the columns have multiple values that are also separated by comma that I do not want to separate. I cannot put them in quotes, brackets or parenthesis. I have to work with this file.
Input:
Desired Output:
| Col1 | Col2 | Col3 | Col4 | Col5 | Col6 |
| ab | cd | 7,6 | 45 | 21 | gh |
I am working with strings mostly here.
I know what column has multiple values (for example col3 here) if that helps.
Thanks in advance!