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
Hi All,
I am trying to do the below calculation to sum the Annual GP based a couple of filters, but as soon as I try and do the filter actualclosedate>X then it doesn't work and just sums all Annual GP. See below formula, can someone take a look and see where I am going wrong.
Solved! Go to Solution.
Hi @Anonymous ,
Try this measure:
AGP Removed =
CALCULATE (
SUM ( Opportunity[Annual GP] ),
(Opportunity[new_ContractType] = 279640002
|| Opportunity[new_ContractType] = 279640000
|| Opportunity[new_ContractType] = 957500000) &&
Opportunity[ActualCloseDate] > DATE( 2020, 1, 15)
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @,
Can you please try the following DAX expression please:
AGP Removed = CALCULATE(
SUM(Opportunity[Annual GP]),
FILTER('Opportunity',
(Opportunity[new_ContractType]=279640002 || Opportunity[new_ContractType]=279640000 || Opportunity[new_ContractType]=957500000)
&& (Opportunity[ActualCloseDate]>15/01/2020)
)
)
If this helpf give Kudos and mark it as a Solution! 🙂
Thanks,
Pragati
Hi @Anonymous ,
Try this measure:
AGP Removed =
CALCULATE (
SUM ( Opportunity[Annual GP] ),
(Opportunity[new_ContractType] = 279640002
|| Opportunity[new_ContractType] = 279640000
|| Opportunity[new_ContractType] = 957500000) &&
Opportunity[ActualCloseDate] > DATE( 2020, 1, 15)
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThanks Miguel! That has worked.
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!