Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I created a field "Month Year" from the Date field using Date.ToText([Date],"MMM-yyyy").
When I create a table with just this field is sorts alphabetically.
How can I get this field to sort by the actual date.
Jan-2022
Feb-2022
Mar-2022
Instead of
Apr-2022
Aug-2022
Thank You,
Michael
Solved! Go to Solution.
1. Create another column MonthYearNum
MonthYearNum = YEAR([Date])*100 + MONTH([Date])
2. Sort your existing column [Month Year] by the newly created MonthYearNum:
3. Sort in the visual based on Month Year as required
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
1. Create another column MonthYearNum
MonthYearNum = YEAR([Date])*100 + MONTH([Date])
2. Sort your existing column [Month Year] by the newly created MonthYearNum:
3. Sort in the visual based on Month Year as required
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |