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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Hard Code a Dax formula, not to be filtered by slicer

Hello,

 

I am trying to create a calculated formula In order to have it static and not be filtered by slicer.

I want to calculate "01. CAB" and not to change when I filter it with  'PL Transactions Brand_Marketing_V' [Brand]

BrandMarketing CAB =
CALCULATE(SUM('PL Transactions Brand_Marketing_V'[Amount]),FILTER(ALL('PL Transactions Brand_Marketing_V'),'PL Transactions Brand_Marketing_V'[Level 1]="01. CAB"))
The problem with the formula above is that is not taking in consideration the relative date filter aplied on the page (in this year).
Thank you!
1 ACCEPTED SOLUTION
johnt75
Super User
Super User

You can try

BrandMarketing CAB =
CALCULATE (
    SUM ( 'PL Transactions Brand_Marketing_V'[Amount] ),
    REMOVEFILTERS ( 'PL Transactions Brand_Marketing_V'[Brand] ),
    'PL Transactions Brand_Marketing_V'[Level 1] = "01. CAB"
)

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Thank you! Didn't know about removefilters function.

johnt75
Super User
Super User

You can try

BrandMarketing CAB =
CALCULATE (
    SUM ( 'PL Transactions Brand_Marketing_V'[Amount] ),
    REMOVEFILTERS ( 'PL Transactions Brand_Marketing_V'[Brand] ),
    'PL Transactions Brand_Marketing_V'[Level 1] = "01. CAB"
)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.