Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
SarahCool
Frequent Visitor

Fiscal year month name format

Hi

 

I have created a date table with fiscal year and fiscal month.

This is working well. 

Our fiscal year is from april to march, so month number 1 = april, number 2 = may...

 

So now I want to format the month number to "mmm", but it's giving Jan for every row.

 

"FiscalYear",               IF(MONTH([Date]) < 4,YEAR([Date])-1,YEAR([Date])),
"FiscalMonth",              IF(MONTH([Date])-3 < 1, MONTH([Date])-3+12,MONTH([Date])-3),
"FiscalMonthName_short",    FORMAT(IF(MONTH([Date])-3 < 1, MONTH([Date])-3+12,MONTH([Date])-3),"mmm")
1 ACCEPTED SOLUTION
SamWiseOwl
Super User
Super User

Hi @SarahCool 

Won't the month name stay the same?

Format([Date], "mmm")

 

We have a full bit of script here for CalendarAuto and how it works including Financial month name etc
https://www.wiseowl.co.uk/blog/s2947/calendarauto-table.htm


If you are happy with this answer please mark as a solution for others to find !

Kudos are always appreciated! Check out our free Power BI video courses.

View solution in original post

3 REPLIES 3
SarahCool
Frequent Visitor

oops, sometimes it's more simple then I think.

Thank you very much!

That statement is so true for DAX...


If you are happy with this answer please mark as a solution for others to find !

Kudos are always appreciated! Check out our free Power BI video courses.

SamWiseOwl
Super User
Super User

Hi @SarahCool 

Won't the month name stay the same?

Format([Date], "mmm")

 

We have a full bit of script here for CalendarAuto and how it works including Financial month name etc
https://www.wiseowl.co.uk/blog/s2947/calendarauto-table.htm


If you are happy with this answer please mark as a solution for others to find !

Kudos are always appreciated! Check out our free Power BI video courses.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.