Forum Discussion
Filter on Calculate Sum
- 6 years ago
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) )
Hi @,
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