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.
Error
Hi @RichOB ,
I think your problem has been solved from here: Solved: Re: DAX for Financial Year column - Microsoft Fabric Community
Best Regards,
Stephen Tao
Hi @RichOB ,
If your goal is to create a calculated table that shows distinct financial years, here's the right approach:
FinancialYears = SUMMARIZE(
'Calendar',
FORMAT(EDATE('Calendar'[DATE], -3), "YYYY"),
"Financial Year"
)
Best regards,