This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher 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%
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 21 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 55 | |
| 54 | |
| 47 | |
| 26 | |
| 24 |