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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

How to make dynamic table/column, based on Username

Hi,

 

I'm trying to create a calculated column to my table, which contains the value of another existing column, if the current user's username is contained in a third column containing the allowed users' usernames, and if it doesn't, it shows a given text.

 

So my table should look like this, if user1@email.com views it:

table1

column1allowed userscalculated
xyzuser1@email.comxyz
yyyuser2@email.comaccess denied

 

The point is, I want to show the value of a column based on the allowed users column and the logged in user.

 

My current DAX code looks like this:

Calculated =
IF(
CONTAINSSTRING(SELECTCOLUMNS( table1,"Allowed",[Allowed users]),USERPRINCIPALNAME())
, SELECTCOLUMNS( table1,"Szöveg",[Column1]),"access denied"
)
 
This is not working because USERPRINCIPALNAME() can't be used in calculated columns.
 
Are there any workarounds to this problem?
 
Many thanks!
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , USERPRINCIPALNAME() can be used in measure not column

 

So you can have like

 

maxx(table1 , IF(
CONTAINSSTRING(SELECTCOLUMNS( table1,"Allowed",[Allowed users]),USERPRINCIPALNAME())
, SELECTCOLUMNS( table1,"Szöveg",[Column1]),"access denied"
)

 

and use in aline level visual

 

 

also, explore RLS

 

How to use Row Level Security (RLS): https://youtu.be/NfdIA0uS6Nk

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

Does the above reply solve the problem?

If it works, please consider to mark it as a solution.

 

Best Regards,

Jay

amitchandak
Super User
Super User

@Anonymous , USERPRINCIPALNAME() can be used in measure not column

 

So you can have like

 

maxx(table1 , IF(
CONTAINSSTRING(SELECTCOLUMNS( table1,"Allowed",[Allowed users]),USERPRINCIPALNAME())
, SELECTCOLUMNS( table1,"Szöveg",[Column1]),"access denied"
)

 

and use in aline level visual

 

 

also, explore RLS

 

How to use Row Level Security (RLS): https://youtu.be/NfdIA0uS6Nk

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.