Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hey !
I am developing a model with RLS but I want some of the visuals to remain unchanged, is this possible ?
For example, I have a company presentation page with the number of customers, number of employees, and other economic indicators, but when I apply RLS, I only get those indicators for each person
How do I get this?
Thanks !!
Solved! Go to Solution.
@edubcardoso So normally I see this implemented with a disconnected aggregation table so that the aggregations are not affected by RLS and can be displayed to everyone. For example, you could create an aggregation table like:
Agg Table =
{
( "Customers", COUNTROWS('Customers') ),
( "Employees", COUNTROWS('Employees') )
}
@edubcardoso So normally I see this implemented with a disconnected aggregation table so that the aggregations are not affected by RLS and can be displayed to everyone. For example, you could create an aggregation table like:
Agg Table =
{
( "Customers", COUNTROWS('Customers') ),
( "Employees", COUNTROWS('Employees') )
}
@Greg_Deckler thanks for helping !
With this aggregation table, Can use any measure ? Its just copy the measure and put it in the second argument ?
@edubcardoso , You can make those table is not getting filtered using RLS.
Let's say we have Dimension table email and department and that is used in RLS. Then the tables not joining with department will not get filtered
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 37 | |
| 31 | |
| 27 |