March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
90 | |
90 | |
66 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |