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

We'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

Reply
Anonymous
Not applicable

Test current executing context in M language

Hello everyone.

I have a powerBi report which loads data from an Excel file, classicaly.

But due to network problems (very slow from time to time), I'd like to get the Source Excel file either from local filesystem (when executing on PowerBi desktop), and from a sharepoint directory when executing on the cloud. 

But I don't want to have 2 different .pbix.

So I need in my PowerQuery M, when defining the Source origin of my Excel data file, to dynamically test the context of execution (local PC or sharepoint).

Is it possible to do that ?

Thank you in advance if you have an idea.

1 REPLY 1
BA_Pete
Super User
Super User

Hi @Anonymous ,

 

You can add two sources into your query, then control them with a toggle query, something like this:

// toggleQuery
let
    Source = 1
in
    Source

// queryToToggle
let
    source1 = connectToSharePointSource,
    source2 = connectToFileSystemSource,
    selectSource = if toggleQuery = 1 then Source1 else Source2,
    otherTransformations = Function(selectSource, each doStuff)
in
    otherTransformations

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.