I'm trying to find the best way to clean up my input data in Alteryx, as each original text file is 1.2+ GB. Essentially, I have input data that's broken up as follows:
| Field 1 | Plan Number | Field 2 | Zip code | Field 3 | Plan type | etc... |
| 000 | 1111 | *Random Text* | 12345 | 000000 | A | |
Where the "Field #" columns are deleted are left out after import. However, some entries are missing a field, which shifts everything to the left and messes up the remaining data:
| Field 1 | Plan Number | Field 2 | Zip code | Field 3 | Plan type |
| 000 | 1111 | 12345 | 00000 | A | etc.. |
So, in my example, Field 2's data was missing, so zip code was thrown into field 2, and the remaining data was shifted to the left as well. There aren't too many entries like this, so I don't need to restore their data to working order if there isn't a way to do that here. But is there a way to have Alteryx find this inconsistency in the data so I can clean up these entries? I've incorporated a couple filters that only keep the correct values so far, but I don't have a good way of knowing whether or not I got everything.