Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Is it possible to have Power Query automatically set the value of a query parameter based on the user account logged into Power BI Desktop? We have a report which references an Excel file on our internal network. In order to refresh the data from that Excel file while editing the report in Power BI Desktop, the relative file path must be used, yet the query requires the absolute file path from Power BI Service. I've created a parameter called ViewingUser that sets the file path with an if statement, but I'm curious if it's possible to automatically populate the value of that parameter based on the user account logged into Power BI Desktop. Here is the relevant M code:
let
FilePath = if ViewingUser = "Gateway" then "absoluteFilePath.xlsx" else "relativeFilePath.xlsx",
Source = Excel.Workbook(File.Contents(FilePath), null, true),
A dataset refresh is independent of any "logged in" user (unless you use Direct Query which is not applicable in your scenario)
What you can do is import both sources into the dataset and then use RLS or other DAX rules to switch between them.
Note: Your file should reside on an internal file share, not on a PC drive. IE you should not have the absolute/relative path problem in the first place.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
15 | |
13 | |
9 | |
7 | |
6 |