Forum Discussion

GFJ_BR's avatar
GFJ_BR
New Member
2 years ago
Solved

Parcial data missing from CSV/Text imported with double delimiter

Hello all.   I´m having some trouble with a file that was generated with ££ as the delimiter. This delimiter is common here in my team and we never had this problem before. The problem is that aft...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi GFJ_BR 

     

    Maybe this can be an alternative. First bring data into only one column without splitting, then use Split column By Delimiter feature to split it into multiple columns by "££". 

    let
        Source = Table.FromColumns({Lines.FromBinary(File.Contents("C:\xxxxxxxxxxxxxxxxxxxx.csv"), null, null, 65001)})
    in
        Source

     

    Best Regards,
    Jing
    If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!