This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi,
I want to have my Financial Year formatted like this = 2022-23 instead of 2022-2023
I currently have it like this in my date table = 'Date'[Year] & "-" & 'Date'[Next Year] = 2022-2023
I have a Next Year Column but when I combine them everything after the "-" is 05?
Solved! Go to Solution.
Assuming 'Date'[Year] is the start year of the financial year this would work.
FY new =
VAR trimmed =
RIGHT ( 'Date'[Year] + 1, 2 )
RETURN
'Date'[Year] & "-" & trimmed
You could replace 'Date'[Year] +1 with the column 'Date'[Next Year] if that is the end year of each financial year
You can just get the last 2 digits from your next year column.
Fin Year = 'Date'[Year] & "-" & RIGHT(YEAR('Date'[Next Year]),2)
thanks but that gives me the 05 problem i described in the original message. The VAR option below works though - thanks for responding!
Assuming 'Date'[Year] is the start year of the financial year this would work.
FY new =
VAR trimmed =
RIGHT ( 'Date'[Year] + 1, 2 )
RETURN
'Date'[Year] & "-" & trimmed
You could replace 'Date'[Year] +1 with the column 'Date'[Next Year] if that is the end year of each financial year
Brilliant, many thanks for this!!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 35 | |
| 30 | |
| 23 | |
| 22 |