The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I'm trying to get a count of records where both FY23 Donations and FY24 Donation <>0, but my calc keeps returning (blank).
CALC:
And maybe there's a better way to count ids of donors that donated in both fy23 and fy24? I'm stumped.
Thanks.
Solved! Go to Solution.
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,
Thanks! 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.
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,