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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
revansh
Helper IV
Helper IV

Date Format

Hi Everyone,

 

               I have a line graph with month start date on X-axis. 

 

Month start date format = MM-YYYY (i.e. JAN2017 , FEB2017, MAR2017).

 

I want to change the format to MM-YY (ie JAN17, FEB17,MAR17 etc..) which is not available in the data formats list.

 

how can i get this format with correct sorting.

 

Thanks

1 ACCEPTED SOLUTION
Sean
Community Champion
Community Champion

@revansh

 

Create 2 columns (1 to display and to sort it)

 

Custom Column = FORMAT('Calendar'[Date], "MMM YY")

Custom Column Sort Order = 
INT (
    CONCATENATE ( YEAR ( 'Calendar'[Date] ), FORMAT ( 'Calendar'[Date], "MM" ) )
)

Then Select the Custom Column => Modeling Tab => Sort Column By => select the Custom Column Sort Order column

 

Sort Column By.png

 

That should do it.

Good Luck! Smiley Happy

View solution in original post

5 REPLIES 5
Sean
Community Champion
Community Champion

@revansh

 

Create 2 columns (1 to display and to sort it)

 

Custom Column = FORMAT('Calendar'[Date], "MMM YY")

Custom Column Sort Order = 
INT (
    CONCATENATE ( YEAR ( 'Calendar'[Date] ), FORMAT ( 'Calendar'[Date], "MM" ) )
)

Then Select the Custom Column => Modeling Tab => Sort Column By => select the Custom Column Sort Order column

 

Sort Column By.png

 

That should do it.

Good Luck! Smiley Happy

Thanks!

MMM-YY.jpg

Anonymous
Not applicable

Thank you Sean. That worked for me also. Any idea how we can do it for a YTD chart?

 

I am using a measure that use monthly sales cost and date to get YTD for each month. Something like this.

 

YTD = TOTALYTD(SUM(Sales[Cost]),Sales[Date]) 

 

But when I use, Date(MMM YYYY) = FORMAT(Sales[Date],"MMM YYYY") in the charts, it messes up my YTD chart.

 

Any ideas how to can we make it work?

 

Thanks!

 

 

Anonymous
Not applicable

select the column and go to column tools.

Select the data type and set it as "Date"

select format and type as mmm-yy

 

It worked.

 

Thank you.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors