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

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

Reply
WSwanson
Frequent Visitor

Restricting Query by Username DAX Command in Direct Query

We have a Direct Query dataset in which we are trying to limit a table specifically by the domain name of the user pulling the report. This is being done in the Advanced Editor screen in the Query Editor using the Report Server solution.

The current query (when hard-coded) looks like this, and works fine:

 

let
Source = Sql.Database("Server", "Database",
[Query = "Select Id, DomainName From Database.dbo.Table Where DomainName = 'Hard Coded Domain'"])

 

in
Source

 

We are trying to make the 'Hard Coded Domain' piece be dynamic with the following code:

 

let
LoadingUser = USERNAME(),
Source = Sql.Database("SRVDB", "BI",
[Query = "Select EmployeeId, EmployeeName, DomainName From BI.Base.Employee Where DomainName = '"&LoadingUser&"'"])

 

in
Source

 

However, this produces the error: "Expression.Error: The import USERNAME matches no exports. Did you miss a module reference". Then it says "Expression.Error: The name USERNAME wasn't recognized. Make sure it's spelled correctly"

 

Has anyone ever seen this error before, and if so, is it even possible to use the USERNAME command to limit a query in Advanced Editor?

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @WSwanson,

 

USERNAME() is a DAX function. So you can't use it in the Query Editor that uses Power Query. Please vote on this idea. The workaround could be found here. I tested it with R code. It worked. You can try it like bellow.

let
    RScript = R.Execute("output <- read.table(text=system2(""whoami"", stdout=TRUE))"),
    output = RScript{[Name="output"]}[Value],

    Source = Sql.Database("SqlServerName", "contosoretaildw", [Query="select * from DimCustomer where lastname = '&output&'"])
in
    Source

Best Regards,

Dale

 

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @WSwanson,

 

Could you please mark the proper answer as solution or share the solution if it's convenient for you? That will be a big help to the others.

 

Best Regards!
Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @WSwanson,

 

USERNAME() is a DAX function. So you can't use it in the Query Editor that uses Power Query. Please vote on this idea. The workaround could be found here. I tested it with R code. It worked. You can try it like bellow.

let
    RScript = R.Execute("output <- read.table(text=system2(""whoami"", stdout=TRUE))"),
    output = RScript{[Name="output"]}[Value],

    Source = Sql.Database("SqlServerName", "contosoretaildw", [Query="select * from DimCustomer where lastname = '&output&'"])
in
    Source

Best Regards,

Dale

 

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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.