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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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]
Solved! Go to Solution.
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"
)
Thank you! Didn't know about removefilters function.
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"
)