I have a txt file that is delimited with a double pipe ||. I tried to import:
...but I get an error that "The Delimiter must be a single character."
Has anybody found a solution to this?
Thanks,
Elizabeth
Solved! Go to Solution.
I would go with a very similar approach to @JoshKushner
Read it in with no delimiter and not taking first row as headers
Then use a formula tool to replace the double delimiter with a new one e.g.
Replace([Field_1],"||","§")
Then use Text to Columns and if first row has header Dynamic Rename
Thanks, Josh. That at least reads it in - the text to columns is splitting only by a single pipe, even though I enter || as the delimiter - so every other column is blank. I can do a select, it's just annoying!