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

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

Reply
Anonymous
Not applicable

Date Slicer Sorting

Hello All,

   Good Morning. I am having an issue of sorting the dates in my slicers. Please refer the below screenshot for understanding what kind of sorting is needed for me.

 

I wrote a conditional statement to sort, but it returned a different result which I don't want.

 

Sample file:

slicer sample pbix

 

My requirement is,

1. Months should be in Chronological order

2. Years should be in Ascending order (say 2009, 2010, 2011, 2012 and so on...)

 

1.JPG

 

How can I get the output? Please give me your suggestions and it is much appreciated.

 

Many thanks,

Praveen.

1 ACCEPTED SOLUTION
affan
Solution Sage
Solution Sage

Hi @Anonymous

 

You can add a calculated column in your date dimensions table as below.

 

YearMonthNum = Time_Dimension[Date].[Year]*100 +  Time_Dimension[Date].[MonthNo]

 

Then you can go to Modeling and sort the FiscalMonth Year on this new column.sort by fiscalyearnum.png

 

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

View solution in original post

3 REPLIES 3
affan
Solution Sage
Solution Sage

Hi @Anonymous

 

You can add a calculated column in your date dimensions table as below.

 

YearMonthNum = Time_Dimension[Date].[Year]*100 +  Time_Dimension[Date].[MonthNo]

 

Then you can go to Modeling and sort the FiscalMonth Year on this new column.sort by fiscalyearnum.png

 

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

Anonymous
Not applicable

Fantastic!!! Thank you very much for your timely help. KUDOS.

themistoklis
Community Champion
Community Champion

@Anonymous

 

This link will probably help you

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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 Solution Authors