Hi @martinviking
You are probably hitting a very unusual scenario on that one as it's very rare to have 2 digit separators in file and the product seems to not support it very well......
You could ask the file provider to supply a file with a single digit separator. I found out that pipe | works in most cases.... If a column can potentially hold the pipe (|) character within its value, you will need to use a Double Quote as String separator, meaning that the file will look like the following
"column1"|""column2"|"column3"|"column4"Etc....
"aString"|ANumber|"AnotherString"|"AStringContainingPipe|"etc....
If the file provider can't change its format, you might have to use the trick already mentioned by @_manoj_kumar_ and you would ignore every 2nd column... You would have to extra test and I will strongly suggest to use Double Quote String delimiter to avoid any issues... and as you're at the edge of the product behaviour, you might still have hiccups from time to time... Having a single digit separator will be far more sfer for long term stable solution.
Thanks
Denis