The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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. |