This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello,
I have a measure that adds up a column and then divides each row in that column by the total of the column (calculating percentage). However, when I filter by a different column, the original total of the column changes. I am trying to make it so the total of the column will not change even when filters are applied.
I want it to look like the yellow where if you filter something out, it will still take that number into account when computing the total. Hoping to modify my measure/create a new one that can do this.
Thank you for all the help!!
Solved! Go to Solution.
Percent measure : =
VAR _allcount =
CALCULATE ( SUM ( Data[Count] ), REMOVEFILTERS ( Offers[OfferName] ) )
VAR _count =
SUM ( Data[Count] )
VAR _result =
DIVIDE ( _count, _allcount )
RETURN
_result
Percent measure : =
VAR _allcount =
CALCULATE ( SUM ( Data[Count] ), REMOVEFILTERS ( Offers[OfferName] ) )
VAR _count =
SUM ( Data[Count] )
VAR _result =
DIVIDE ( _count, _allcount )
RETURN
_result
@angevin17 You will need an ALL statement in your measure somewhere.
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 |
|---|---|
| 27 | |
| 25 | |
| 23 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 50 | |
| 45 | |
| 20 | |
| 18 | |
| 18 |