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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
vega
Resolver III
Resolver III

Unable to Open .xls Files From Azure Data lake

Hello,

I am trying to open some .xls files that are located in Azure Data Lake. When I use Get Data -> More -> Azure -> Azure Data Lake, navigate to where the files are, and try to combine the files I get the following error:
Capture2.PNG

However, if download the .xls files to my local machine and use Get Data -> More -> Folder, point it to the local copies and combine the files, the process works as expected and I am able to see the contents of the files. Does anyone have any suggestions as to why this is the case or what can be done to resolve it?

 

Thanks

1 REPLY 1
Anonymous
Not applicable

Hi @vega,

 

You can refer to below steps to combine these xls files.

 

1. get data from azure data lake.

1.PNG

 

2. Navigate to files list.

2.PNG

 

3. Add custom column to analysis excel files.

#"Added Custom" = Table.AddColumn(Test, "Custom", each Table.PromoteHeaders(Excel.Workbook([Content])[Data]{0})),

5.png

 

4. Use Table.Combine function to merge these files.

4.PNG

 

Full query:

let
    Source = DataLake.Contents("xxxxxxxxxxxxxx"),
    Test = Source{[Name="Test"]}[Content],
    #"Added Custom" = Table.AddColumn(Test, "Custom", each Table.PromoteHeaders(Excel.Workbook([Content])[Data]{0})),
    Custom1 = Table.Combine(#"Added Custom"[Custom])
in
    Custom1

 

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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