Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Syndicate_Admin
Administrator
Administrator

Measured with different Filters

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]))

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@bcastrom,

 

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"
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

Thank you very much, it guided me a lot and helped me a lot

DataInsights
Super User
Super User

@bcastrom,

 

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"
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors