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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
BradRose
Helper I
Helper I

Row Level security

Good Afternoon:

 

I am trying to use row level security with the ()username function.  I was able to create Measure for username I called it "Login" it returns the results as expected.  When I try and link the username measure to the ID it does not return any results.

 

[LANID] = [Login]

 

Any insights as to what I am doing wrong?  I have a feeling I missing a few steps

 

Brad

1 ACCEPTED SOLUTION

Hi @BradRose,

Within Power BI Desktop, username() will return a user in the format of DOMAIN\User and userprincipalname() will return a user in the format of [email protected].

Within the Power BI service, username() and userprincipalname() will both return the user's User Principal Name (UPN). This looks similar to an email address.



As Matt has mentioned above, username() will return a user in different format within Power BI Desktop and Power BI service. So could you try using the formula below to see if it works?

Login = SUBSTITUTE ( USERPRINCIPALNAME (), "@contoso.com", "" )

In addition, here is a good article about Dynamic RLS in Power BI for your reference. Smiley Happy

 

Regards

View solution in original post

3 REPLIES 3
MattAllington
Community Champion
Community Champion

What format is the LANID?  Is it an email address or domain\username.  Be careful as the behaviour on powerbi.com and power bi desktop is different. 



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

Matt:

 

LANID is a coulmn in our employee table is the just the username.  In my measure I have stipped out the domain to match the column in the employee table. 

 

Here is my measure   

Login = SUBSTITUTE(USERNAME(),"NESTLE\","")

 

Brad

Hi @BradRose,

Within Power BI Desktop, username() will return a user in the format of DOMAIN\User and userprincipalname() will return a user in the format of [email protected].

Within the Power BI service, username() and userprincipalname() will both return the user's User Principal Name (UPN). This looks similar to an email address.



As Matt has mentioned above, username() will return a user in different format within Power BI Desktop and Power BI service. So could you try using the formula below to see if it works?

Login = SUBSTITUTE ( USERPRINCIPALNAME (), "@contoso.com", "" )

In addition, here is a good article about Dynamic RLS in Power BI for your reference. Smiley Happy

 

Regards

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors