Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
I've got a measure that makes a percentage out of a slicer my measure looks like this:
Solved! Go to Solution.
Can you try using this measure =
Measure = CALCULATE(SUM('Table'[Money]),FILTER('Table','Money'[Person]=selectedvalue('Money'[Person]))) / CALCULATE(SUM('Table'[Money]), RemoveFilters('Money'[Person]))
Can you try using this measure =
Measure = CALCULATE(SUM('Table'[Money]),FILTER('Table','Money'[Person]=selectedvalue('Money'[Person]))) / CALCULATE(SUM('Table'[Money]), RemoveFilters('Money'[Person]))
this is it thank you so much
Hi,
Your person name filter would still be affecting the numerator and we are just removing its interaction with Total (Denominator)
Numerator = CALCULATE(SUM('Table'[Money]),FILTER('Table','Money'[Person]="Name")) -> which still filters the person name
Denominator = CALCULATE(SUM('Table'[Money]), RemoveFilters('Money'[Person])) -> This won't filter the person name and instead give Total value
Hi @dexter00000 ,
Can you try with the below measure formula -
Measure = CALCULATE(SUM('Table'[Money]),FILTER('Table','Money'[Person]="Name")) / CALCULATE(SUM('Table'[Money]), RemoveFilters('Money'[Person]))
Hope this helps!
Please accept the solution if this answers your query.
Thanks!
Avantika
but then i have to use the filter which i handpick person name i wanna be able to use the slicer to choose the person and then get their money and compare it to the total
instead of typing Person = "Name" by hand i want to use the slicer but that slicer effects the total sum too so i get 100%
User | Count |
---|---|
122 | |
76 | |
63 | |
51 | |
50 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |