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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
IanCockcroft
Post Patron
Post Patron

FORMAT() returns wrong month

Hi guys,

i am trying to return the month name from a date

formula for testing I wrote is

LASTDATE(calender[PK_Date]) & "-"&FORMAT(MONTH(LASTDATE(calender[PK_Date])),"MMM")
 
 
LASTDATE(calender[PK_Date])
retuns
2/28/2019 (FEB)
 
FORMAT(MONTH(LASTDATE(calender[PK_Date])),"MMM")
returns JAN
 
How is this posible when the Month is clearly FEB?sc.png
 
thanks
1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Hello @IanCockcroft 

You don't actually need to call the month for formatting your date the way want, you can just use

dispPevMnthScenario = FORMAT ( LASTDATE ( calender[PK_Date] ) , "m/d/yyyy-mmm" )

The reason you are seeing Jan in your string is because you used MONTH in your formula.

The MONTH of 2/28/2019 is 2

PowerBI sees numbers as a date so when you format 2 as MMM it converts 2 to a date of 1/1/1900 then gives you the mmm of that date which is Jan.  Here is an image showing both:

MonthFormat.jpg

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

It seems to be a filter issue. DAX doesnt give wrong answers, it sometimes gives suprising answers, but there is always a reason. Can you upload a sample?

@IanCockcroft Are you adding this as a column? If yes then you don't need to use LASTDATE function. use following if adding as a column

 

Month = FORMAT (  calender[PK_Date]  , "m/d/yyyy-mmm" )


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Hi parry2k, its actually for a dynamic label within a card. Once I get this right, i will have 2 labelS, 1 for current name of year and month and one for previous name of year and month. The actual vallues for these 2 are measures in a matrix with the column header removed.

 

Because it needs to return a single value, I added LASTDATE to illmintae all the other dates.

 

Thanks for taking the time to have a look.

 

cheers

Ian

jdbuchanan71
Super User
Super User

Hello @IanCockcroft 

You don't actually need to call the month for formatting your date the way want, you can just use

dispPevMnthScenario = FORMAT ( LASTDATE ( calender[PK_Date] ) , "m/d/yyyy-mmm" )

The reason you are seeing Jan in your string is because you used MONTH in your formula.

The MONTH of 2/28/2019 is 2

PowerBI sees numbers as a date so when you format 2 as MMM it converts 2 to a date of 1/1/1900 then gives you the mmm of that date which is Jan.  Here is an image showing both:

MonthFormat.jpg

💯

LASTDATE did the trick - thank you so much!

Thanks jdbuchanan71.

The final measure code is

dispPrevMnthScenario =

var scenario1 = SELECTEDVALUE('Scenario type'[Scenario])
var PrevYearMonth = FORMAT ( DATEADD(FIRSTDATE(Calender[PK_Date]), -1, MONTH) , "yyyy") &"-"&FORMAT ( DATEADD(FIRSTDATE(Calender[PK_Date]), -1, MONTH) , "mmm")
return
PrevYearMonth & " "& scenario1
 
This is used to change column headers depending on selections. budgets, actuals, scenarios
 
thanks a mil
Ian

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors