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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
mikecolabrese
Regular Visitor

Create a sort column using DAX

Ive created a calculated date table, so i am unable to go into edit queries to add a column.

 

Need a DAX formula to sort the Month, Year column in order by date. Example below.

 

Date          |   Month, Year    |  Sort Column

1/1/2019   |  January, 2019   |         1

1/2/2019   |  January, 2019   |         1
.

.

2/1/2019   |  February, 2019 |         2

2/2/2019   |  February, 2019 |         2
.

.

3/1/2019   |  March, 2019     |         3

3/2/2019   |  March, 2019     |         3

.

.

.

1/1/2020   | January, 2020    |        13
1/2/2020   | January, 2020    |        13

 

Additional context if needed: the date column is by day, which i will need for other parts of the report, but i have some pages of the report that only can be viewed by month, and i will have the end user select the month in that slicer, hense why i need the sort column to produce the slicer in date order.

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

Try something like:

 

Sort = YEAR([Date]) & FORMAT(MONTH([Date]),"00")

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

Try something like:

 

Sort = YEAR([Date]) & FORMAT(MONTH([Date]),"00")

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler  that worked! thank you!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors