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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
S184019
Advocate III
Advocate III

Formatting not working properly

I've a simple table with a date field called "ServDate" formatted as a date *3/14/2001 with values ranging from 9/4/2018 to 3/29/2019.   The table has ~134K rows. Creating a new column like this

MMM = MONTH(a[ServDate]) 

I get: 

ServDate                      MMM
10/2/2018                    10
10/2/2018                    10
10/18/2018                  10
... so this works. 

 

But IF, we add this piece, MMM = FORMAT(MONTH(a[ServDate]),"MMM"),  we get 

ServDate                      MMM
10/2/2018                    Jan
10/2/2018                    Jan
10/18/2018                  Jan

 

The month here is October, not January. Please let me know if you want the pbix. 

 

 

1 ACCEPTED SOLUTION
v-qiuyu-msft
Community Support
Community Support

Hi @S184019

 

Please modify the DAX like below: 

 

MMM-YY = CONCATENATE(FORMAT(Dates[Date],"MMM"),CONCATENATE("-",RIGHT(YEAR(Dates[Date]),2)))
 
q3.PNG

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-qiuyu-msft
Community Support
Community Support

Hi @S184019

 

Please modify the DAX like below: 

 

MMM-YY = CONCATENATE(FORMAT(Dates[Date],"MMM"),CONCATENATE("-",RIGHT(YEAR(Dates[Date]),2)))
 
q3.PNG

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
S184019
Advocate III
Advocate III

Even more simply, start from a blank PBIX.  create a new table.   Type this which will produce a 2 year date range of 731 rows: 

 

Dates = CALENDAR(date(year(now())-2,month(now()),Day(now())),now())
 
Then add a column to the table like this: 
 
MMM-YY = CONCATENATE(FORMAT(MONTH(Dates[Date]),"MMM"),CONCATENATE("-",RIGHT(YEAR(Dates[Date]),2)))
 
One would expect to see values for the 3 letter month and 2 digit year, but instead, only Jan and Dec show up with their associated year.  @bi-support @v-yulgu-msft 
 
 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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