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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
Can any one please help me on below issue.
How to sort MonthName from January to December in Slicer.
Thanks in advance.
Solved! Go to Solution.
Hi,
You can a calculated column to get month numbers
Then sort the Month Name column by Month Number column
Month_Number =
SWITCH (
[MONTH_Name],
"August", 08,
"December", 12,
"July", 07,
"November", 11,
"October", 10,
"September", 09,
"April", 04,
"February", 02,
"January", 01,
"March", 03,
"May", 05,
"June", 06
)
Check this post as well
http://www.excelnaccess.com/custom-sorting-in-power-bi/
Hi,
You can a calculated column to get month numbers
Then sort the Month Name column by Month Number column
Month_Number =
SWITCH (
[MONTH_Name],
"August", 08,
"December", 12,
"July", 07,
"November", 11,
"October", 10,
"September", 09,
"April", 04,
"February", 02,
"January", 01,
"March", 03,
"May", 05,
"June", 06
)
Check this post as well
http://www.excelnaccess.com/custom-sorting-in-power-bi/