Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I need some help with some Row Level Security DAX formulas in Power BI.
I have a list of Customers below and a filter selection. Some users can see all the data, and some users can only see part of the data.
Let's say I'm Customer A. Customer A can see everything on the Customer and Performance column, but the Root Cause and Sales fields need to be blank.
Example of secuirty for selecting Customer A. Notice the blank rows.
To do this I tried relating two tables then writing some DAX filtering expressions using Manage Roles. However it seams the Manage Roles feature only let's you filter out data and I end up loosing all of the other values.
Solved! Go to Solution.
What I ended up doing was using a SWITCH function. I created a new column for each role, then a Measure to Switch between the columns depending on the role.
Hi @Anonymous ,
As you know, it's "Row" level security.
You want to show blank in column value for different customers.
I think you can try to make it in DAX, something like:
measure = if(username() = "A", if(customer_name = username(),customer_name,blank()))
Aiolos Zhao
What I ended up doing was using a SWITCH function. I created a new column for each role, then a Measure to Switch between the columns depending on the role.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 62 | |
| 31 | |
| 26 | |
| 25 |