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 September 15. Request your voucher.
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/
User | Count |
---|---|
71 | |
63 | |
60 | |
49 | |
26 |
User | Count |
---|---|
117 | |
75 | |
62 | |
55 | |
43 |