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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi
I have created a column in my date table for fiscal/financial year. I want the label to show as 22/23 etc. at the minute it is only showing 2023. Is there a way of doing this please. Calculation as below
Solved! Go to Solution.
Hi @maurcoll,
Please try this code:
VAR FirstFiscalMonth = 4
VAR FicalYear =
IF (
'Calendar'[ MonthNo] >= FirstFiscalMonth,
RIGHT('Calendar'[Year],2) &"/"& RIGHT('Calendar'[Year] + 1,2),
RIGHT('Calendar'[Year]-1,2) &"/"& RIGHT('Calendar'[Year],2)
)
RETURN
FicalYear
Proud to be a Super User!
Hi @maurcoll,
Can you tell me if my message solved your problem? If so, could you mark my message as the answer to this problem?
I'd be very grateful. Thank you very much
Proud to be a Super User!
Hi @maurcoll,
Please try this code:
VAR FirstFiscalMonth = 4
VAR FicalYear =
IF (
'Calendar'[ MonthNo] >= FirstFiscalMonth,
RIGHT('Calendar'[Year],2) &"/"& RIGHT('Calendar'[Year] + 1,2),
RIGHT('Calendar'[Year]-1,2) &"/"& RIGHT('Calendar'[Year],2)
)
RETURN
FicalYear
Proud to be a Super User!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 52 | |
| 45 | |
| 23 | |
| 21 |
| User | Count |
|---|---|
| 141 | |
| 114 | |
| 50 | |
| 37 | |
| 30 |