Forum Discussion
samc_26
Helper IV
3 years agoYear formatting in DAX
Hi, I managed to steal this DAX to create a FY table but I want the column to show the year in the format yy/yy rather than yyyy/yyyy and i have no idea how to do this within this code, can anyone pl...
BA_Pete
Super User
3 years agoHi samc_26 ,
I'd probably do it something like this:
Financial Year New =
VAR __todayYear = YEAR(Date_today[Date])
RETURN
IF(
MONTH(Date_today[Date]) >= 4,
RIGHT(__todayYear, 2) & "/" & RIGHT(__todayYear + 1, 2),
RIGHT(__todayYear - 1, 2) & "/" & RIGHT(__todayYear, 2)
)
Pete
- samc_263 years ago
Helper IV
Genius thank you very much! 🙌