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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

format Month doesn't work

Hello teams,

I use "Month(Now()) to get the current month and I get "11" for this month. But I want to convert number to character (Novemeber instead of 11)

I use  Current = FORMAT(MONTH(NOW()), "MMMM") But the result returns January, which is wrong.
How to I have a correct format?
Thank you
 
1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

@Anonymous 

Give this a try

 

 

Current = FORMAT(NOW(), "MMMM")

 

 

The problem you are running into is the way DAX (and excel and SQL etc.) think of dates.  

NOW() is really 43784 which is the numeric value of 11/15/2019.

When you say MONTH(NOW()) you are getting 11 which DAX reads as the date 1/11/1900 so it formats "MMMM" as January.

 

If this solves your issues please mark it as the solution. Kudos 👍 are nice too.

 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

Try

Month(Now()) & ""

Current = FORMAT(MONTH(NOW()), "MM")

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

My Recent Blog - https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
jdbuchanan71
Super User
Super User

@Anonymous 

Give this a try

 

 

Current = FORMAT(NOW(), "MMMM")

 

 

The problem you are running into is the way DAX (and excel and SQL etc.) think of dates.  

NOW() is really 43784 which is the numeric value of 11/15/2019.

When you say MONTH(NOW()) you are getting 11 which DAX reads as the date 1/11/1900 so it formats "MMMM" as January.

 

If this solves your issues please mark it as the solution. Kudos 👍 are nice too.

 

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