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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
ey00016
Frequent Visitor

'MONTH' FORMAT DAX NO LONGER WORKING (ALWAYS RETURNS JANUARY)

Hi guys,

 

I have a report which includes dynamic text on the first page to display the name of the previous month (e.g. today, March 13th, it displays 'FEBRUARY').

This was working perfectly fine for months up until now, where my formula will only return 'JANUARY'.

 
Reporting Period = UPPER(FORMAT(MONTH(TODAY())-1,"MMMM"))
 
The MONTH(TODAY())-1 part is returning '2' AKA February so that is working fine, but as soon as I use 'FORMAT' to turn the number into text, it defaults to January.
 
Any ideas why this might be happening?
The only thing that has changed since it stopped working is an update to Windows 11 - I wonder if this is the cause and some settings need updating somewhere?
 
1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@ey00016 I don't see how that ever worked. I would think it should be:

 

Reporting Period = UPPER(FORMAT(EOMONTH(TODAY(),-1),"MMMM"))

A 2 would literally be January 1st, 1900 because dates are decimal numbers where the integer portion is the number of days since midnight December 30th, 1899.

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

@ey00016 I don't see how that ever worked. I would think it should be:

 

Reporting Period = UPPER(FORMAT(EOMONTH(TODAY(),-1),"MMMM"))

A 2 would literally be January 1st, 1900 because dates are decimal numbers where the integer portion is the number of days since midnight December 30th, 1899.

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

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

May 2025 Monthly Update

Fabric Community Update - May 2025

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