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
dgodley12
New Member

Sorting Dates & Date Labels

Hello All, 

 

I am using a graph to show vendor spend, and it does not let me add the year next to the months. For example it only displays January and I want to it show January 2018. It also should be sorted in date order. All of the months are 2017, except Jan-Feb-March which are 2018. does anyone know how to fix this? graphbi

2 ACCEPTED SOLUTIONS
MFelix
Super User
Super User

Hi @dgodley12,

 

Add the following column to your data model:

 

Date Year = Format (Table[Date]; "YY - mmm")

You can format it in different ways and then use it on your chart.

 

Regards,

MFelix 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

danextian
Super User
Super User

Hi @dgodley12.

 

You can try this DAX formula as a calcualted column.

 

Month and Year =
FORMAT ( 'Table'[Date], "mmmm yyyy" )

 

And then create another calculated to sort Month and Year by.

 

Month and Year Sort =
 FORMAT ( 'Table'[Date], "yyyymm" )




Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

2 REPLIES 2
danextian
Super User
Super User

Hi @dgodley12.

 

You can try this DAX formula as a calcualted column.

 

Month and Year =
FORMAT ( 'Table'[Date], "mmmm yyyy" )

 

And then create another calculated to sort Month and Year by.

 

Month and Year Sort =
 FORMAT ( 'Table'[Date], "yyyymm" )




Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
MFelix
Super User
Super User

Hi @dgodley12,

 

Add the following column to your data model:

 

Date Year = Format (Table[Date]; "YY - mmm")

You can format it in different ways and then use it on your chart.

 

Regards,

MFelix 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



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