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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Good morning, I need help. I need to create a measure that adds the column Balances [BALANCE] but that is not affected by the segmenters of the page and that does not add the data when the element of Balances[OFI_DESCRIPCION] is equal to 'Headquarters', I tried with this measure but I need to add that I do not add 'Headquarters':
Balance = CALCULATE(sum(Balances[BALANCE]), ALL(Balances[DESCRIPCION_ZONA],Balances[OFI_DESCRIPCION]))
Solved! Go to Solution.
If you want to clear the filter context from all segmenters (slicers and filters), you can use the ALL function:
Balance =
CALCULATE (
SUM ( Balances[BALANCE] ),
ALL (),
Balances[OFI_DESCRIPCION] <> "Headquarters"
)
Proud to be a Super User!
Thank you very much, it guided me a lot and helped me a lot
If you want to clear the filter context from all segmenters (slicers and filters), you can use the ALL function:
Balance =
CALCULATE (
SUM ( Balances[BALANCE] ),
ALL (),
Balances[OFI_DESCRIPCION] <> "Headquarters"
)
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 101 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |