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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have a table as such
Department | Sales |
A | 50000 |
B | 25000 |
C | 25000 |
When person A logs in using RLS (Department = "A"), he can only see his 50k. But I want a scorecard visual that divides his sales by the total in the organizaton. 50k / 100k = 50 %.
Is this possible?
Solved! Go to Solution.
@Anonymous - So how I have handled this in the past is to create an "aggregation" table where these numbers are stored that is disconnected from RLS. Then users and DAX have access to these numbers. So, you could create a new table like:
Table = { Aggregates }
Then add a column to this table:
Total Sales = SUMX('Table1',[Sales])
@Anonymous - So how I have handled this in the past is to create an "aggregation" table where these numbers are stored that is disconnected from RLS. Then users and DAX have access to these numbers. So, you could create a new table like:
Table = { Aggregates }
Then add a column to this table:
Total Sales = SUMX('Table1',[Sales])
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |