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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
krasinv
Frequent Visitor

DataFlow / Power Query to read from Delta Lake ( ADLS) with DeltaLake.Table()

Good day,

My case is not Databricks Delta Lake. I'm trying to read natively from Delta Lake Table stored on ADLSgen2.

There is a new capability DeltaLake.Table() (description here https://learn.microsoft.com/en-us/powerquery-m/deltalake-table)

Unfortunately, I was not successful. I'm getting a warning - There is no Delta table at this location.

I appreciate any ideas as well as some documentation.

 

 

 

 

 

let
   Source = AzureStorage.DataLake("https://XXXXX.dfs.core.windows.net/path to DeltaLakeTable/"),
   ReadDelta = DeltaLake.Table(Source)
in
   ReadDelta

 

 

 

 

 

3 REPLIES 3
krasinv
Frequent Visitor

Good day,

Thank you. I'm aware of this solution but my question relates to the official data function which is not work for me.

Late to the party, however you can make it work using the following:

let
   Source = AzureStorage.DataLake("https://XXXXX.dfs.core.windows.net/path to DeltaLakeTable/", [HierarchicalNavigation=true]),
   ReadDelta = DeltaLake.Table(Source)
in
   ReadDelta

https://blog.fabric.microsoft.com/en-us/blog/read-data-from-delta-lake-tables-with-the-deltalake-tab...

Anonymous
Not applicable

Hi @krasinv ,

 

Check if this blog by Gerhard helps:

Reading Delta Lake Tables natively in PowerBI

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors