Forum Discussion
PBrainNWH
Helper II
2 years agoCalculation help (if two columns are not 0 then count)
I'm trying to get a count of records where both FY23 Donations and FY24 Donation <>0, but my calc keeps returning (blank). CALC: rReturned in FY2024 = CALCULATE( DISTINCTCOUNT('Opportuni...
- 2 years ago
Hi PBrainNWH ,
What about replacing the comma with double ampersand (&&)?
In a copy-pasteable format:
rReturned in FY2024 = CALCULATE ( DISTINCTCOUNT ( 'Opportunity Contact Role'[ContactId] ), 'Opportunity Contact Role'[FY23 Donations] <> 0 && 'Opportunity Contact Role'[FY24 Donations] <> 0 )Best regards,
PBrainNWH
Helper II
2 years agoThanks! I actually was able to create this:
FY24 Status =
IF(
'Donations by Customer by FY'[2023 Donations] <> 0 && 'Donations by Customer by FY'[2024 Donations] <> 0,
"Retained",
IF(
'Donations by Customer by FY'[2023 Donations] = 0 && 'Donations by Customer by FY'[2024 Donations] <> 0,
"New424",
"Lapsed"
)
)
I can now count the statuses.