Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jcamilo1985
Helper III
Helper III

Several separators with CSV.Documes in New Column

Good morning

I hope they are very well and I am looking for guidance again.
I connect to a folder that has several CSV files, the problem comes at the time of separating them because some has as a separator, and others;

 

jcamilo1985_0-1677676781695.png


If I call a personalized column as I can use CSV.Documes to indicate several separators to the function.

Any help will be important. Thank you

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @jcamilo1985 

 

You can try below code to create a custom column. 

if Table.ColumnCount(Csv.Document([Content],[Delimiter=","])) > 1 then Csv.Document([Content],[Delimiter=","]) else Csv.Document([Content],[Delimiter=";"])

vjingzhang_0-1677812168973.png

 

Below is the full M code of my sample. You can paste it into a blank query to check the result. 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8i9KSS3ydNHxLEnNjckz1HHLLM7IzEtXKMpPickz0jFUyEnSUyjPL8otVorVgSu3hig3tkZRbmKNojwWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each if Table.ColumnCount(Csv.Document([Column1],[Delimiter=","])) > 1 then Csv.Document([Column1],[Delimiter=","]) else Csv.Document([Column1],[Delimiter=";"]))
in
    #"Added Custom"

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @jcamilo1985 

 

You can try below code to create a custom column. 

if Table.ColumnCount(Csv.Document([Content],[Delimiter=","])) > 1 then Csv.Document([Content],[Delimiter=","]) else Csv.Document([Content],[Delimiter=";"])

vjingzhang_0-1677812168973.png

 

Below is the full M code of my sample. You can paste it into a blank query to check the result. 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8i9KSS3ydNHxLEnNjckz1HHLLM7IzEtXKMpPickz0jFUyEnSUyjPL8otVorVgSu3hig3tkZRbmKNojwWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each if Table.ColumnCount(Csv.Document([Column1],[Delimiter=","])) > 1 then Csv.Document([Column1],[Delimiter=","]) else Csv.Document([Column1],[Delimiter=";"]))
in
    #"Added Custom"

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

Thank you very much for the answer, it really works, I was hoping that the csv.document function would manually admit the option of several separators as it says in the documentation so as not to have to resort to an if, but the solution is good, thank you very much again

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors