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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
AA622
Helper II
Helper II

Month and Short Month Abbrev solution

Hello

 

We have a specific Calendar table for all date needs. Month day year Qtr MoM MMYYYY etc

 

I am looking to have a short month abbreviated column for graphs and such. I duplicated the date column (1/1/2015) and changed the type to TEXT in power query and did so in the front end in the model view under Data Type and changed format to Custom "mmm"

 

But now I have this issue where the month is Re-iterating. How do I fix this? I posted a pic of how its displaying and how it should look (right chart)

AA622_0-1653429134358.png

 

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Don't duplicate the column and convert into text. In PQ, in a custom column named ShortMonth, use following formula

= Text.Start(Date.MonthName([Date]),3)

 If you want to do in DAX

ShortMonth = FORMAT([Date],"mmm")

View solution in original post

3 REPLIES 3
Vijay_A_Verma
Super User
Super User

Don't duplicate the column and convert into text. In PQ, in a custom column named ShortMonth, use following formula

= Text.Start(Date.MonthName([Date]),3)

 If you want to do in DAX

ShortMonth = FORMAT([Date],"mmm")

Hello

 

I tried the custom column formula but i get the following error:

Expression.Error: The name 'Text.start' wasn't recognized. Make sure it's spelled correctly.

 

What do i do with this?

It is Text.Start not Text.start. PQ is super sensitive to case. 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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 Kudoed Authors