Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Here is my situation:
When I use the SAS URL with the Web connector, Power BI can access the CSV file without any issue.
However:
👉 This is expected because Power BI Service does not allow refreshes for a Web source using a SAS URL.
Scheduled refresh requires a stable authentication method (Service Principal or OAuth2).
A SAS token expires, and a Web + SAS source is considered non-refreshable by Power BI Service.
When I use the Azure Blob Storage connector with my AL account (which has the correct RBAC permissions):
So Azure AD authentication works correctly.
Although I can list all the files, none of them can be selected or loaded.
👉 This is not a permissions issue.
👉 It’s a limitation of the Azure Blob Storage connector when using OAuth2.
According to Microsoft documentation for the Azure Blob Storage connector:
This matches exactly what I am observing.
👉 With Web + SAS:
👉 With Azure Blob Storage + OAuth2 (AL account):
Is anybody can help please?
Solved! Go to Solution.
Hey @jip34 ,
Your issue is related to how Power BI Service handles authentication and connectors when accessing Microsoft Power BI with Microsoft Azure Blob Storage.
Your observations are correct:
Below are the practical solutions used in real implementations.
Solution 1 — Use Azure Blob Connector with Folder Navigation (Recommended)
Instead of selecting the CSV file directly, load the container first and then filter to the file.
Steps
Example Power Query logic:
let
Source = AzureStorage.Blobs("https://storageaccount.blob.core.windows.net"),
Container = Source{[Name="nexthinkreports"]}[Data],
FilteredFile = Table.SelectRows(Container, each [Name] = "report.csv"),
FileContent = FilteredFile{0}[Content],
CsvData = Csv.Document(FileContent)
in
CsvData
This method works with OAuth2 and scheduled refresh in Power BI Service.
Best Practice Architecture
Most organizations use:
Azure Blob Storage → Power BI Dataflow → Semantic Model → Reports
Hey @jip34 ,
Your issue is related to how Power BI Service handles authentication and connectors when accessing Microsoft Power BI with Microsoft Azure Blob Storage.
Your observations are correct:
Below are the practical solutions used in real implementations.
Solution 1 — Use Azure Blob Connector with Folder Navigation (Recommended)
Instead of selecting the CSV file directly, load the container first and then filter to the file.
Steps
Example Power Query logic:
let
Source = AzureStorage.Blobs("https://storageaccount.blob.core.windows.net"),
Container = Source{[Name="nexthinkreports"]}[Data],
FilteredFile = Table.SelectRows(Container, each [Name] = "report.csv"),
FileContent = FilteredFile{0}[Content],
CsvData = Csv.Document(FileContent)
in
CsvData
This method works with OAuth2 and scheduled refresh in Power BI Service.
Best Practice Architecture
Most organizations use:
Azure Blob Storage → Power BI Dataflow → Semantic Model → Reports
Many thanks MohdZaid
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 29 | |
| 23 | |
| 18 | |
| 17 | |
| 14 |