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
Vianney123
Regular Visitor

Power Query importing CSV from folder error

Hey all, 

 

I am trying to create a Power Query from a folder which contains a CSV file.

Unfortunatly i am getting an error.

 

After clicking on the " Binary" sign, i get the error below.

I think it's due to the Delimiter.
But i don't know how to solve it.

 

Does anybody now how to solve this?
Thanks in advance!!!!

 

1.JPG

 

2.JPG

 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Vianney123 

 

Try this:

let
    Source = Folder.Files("O:\EXPIRATIES"),
    #"Sorted Rows" = Table.Sort(Source,{{"Date created", Order.Descending}}),
    #"Kept First Rows" = Table.FirstN(#"Sorted Rows",1),
    ImportCSV = Csv.Document(#"Kept First Rows"{0}[Content],[Delimiter=";", Columns=1, Encoding=65001, QuoteStyle=QuoteStyle.None])
in
    ImportCSV

 

Kind regards,

JB

View solution in original post

5 REPLIES 5
v-lid-msft
Community Support
Community Support

Hi @Vianney123 ,

 

We can change the "Imported CSV" step, from

 

= Csv.Document(#"Previous Step Name",[Delimiter=",", Columns=1, Encoding=65001, QuoteStyle=QuoteStyle.None])

 

To

 

= Csv.Document(#"Previous Step Name",[Delimiter=";", Columns=1, Encoding=65001, QuoteStyle=QuoteStyle.None])

 

13.jpg

 

Then we can add a "Use First Row as Headers" step after imported CSV

 

14.jpg

 


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hey v-lid-msft,


Thanks for your response 🙂

Unfortunately i seem to be unable to adjust your steps 😞

 

Do you perhaps know what i should add in the advanced editor?

 

Thanks in advance,

Vianney123

 

let
Source = Folder.Files("O:\EXPIRATIES"),
#"Sorted Rows" = Table.Sort(Source,{{"Date created", Order.Descending}}),
#"Kept First Rows" = Table.FirstN(#"Sorted Rows",1)
in
#"Kept First Rows"

Anonymous
Not applicable

Hi @Vianney123 

 

Try this:

let
    Source = Folder.Files("O:\EXPIRATIES"),
    #"Sorted Rows" = Table.Sort(Source,{{"Date created", Order.Descending}}),
    #"Kept First Rows" = Table.FirstN(#"Sorted Rows",1),
    ImportCSV = Csv.Document(#"Kept First Rows"{0}[Content],[Delimiter=";", Columns=1, Encoding=65001, QuoteStyle=QuoteStyle.None])
in
    ImportCSV

 

Kind regards,

JB

@Anonymous Works like a charm! Thanks!!!

Jimmy801
Community Champion
Community Champion

Hello @Vianney123 

 

what is the idea to read from the folder and then from csv-file?

If you only need this file only, query your file directly with the TXT/CSV function. This help importing your data with a special wizard. If you need do read the binary data from your flder consider using this csv-converting function like this (your file seems european standard and devided with semicolon)

= Csv.Document(YourBinaryDataUsindForExampleFileContents,[Delimiter=";", Columns=4, Encoding=1252, QuoteStyle=QuoteStyle.None])

 

If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too

Have fun

Jimmy

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