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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
AA-Avage-YoY =
IF(ISFILTERED(tblFTE[FiscalYear]);
CALCULATE(AVERAGE(tblFTE[Age]);
FILTER(tblFTE;tblFTE[FiscalYear]=tblFTE[FiscalYear]))
-
CALCULATE(AVERAGE(tblFTE[Age]);
FILTER(tblFTE;tblFTE[FiscalYear]="FY"&MID(MAX(tblFTE[FiscalYear]);3;2)-1&RIGHT(MAX(tblFTE[FiscalYear]);2)-1)))
I'd appreciate any help/hint you can give me,
Many thanks!
@Anonymous , first create a separate Date/FY Table. This FY format is sortable Create a rank on that
new column
Year Rank = RANKX(all('Date'),'Date'[FY],,ASC,Dense)
measures
This Year = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year Rank]=max('Date'[Year Rank])))
Last Year = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year Rank]=max('Date'[Year Rank])-1))
Time Intelligence, DATESMTD, DATESQTD, DATESYTD, Week On Week, Week Till Date, Custom Period on Period,
Custom Period till date: https://youtu.be/aU2aKbnHuWs&t=145s
Check out the November 2025 Fabric 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!