Forum Discussion
sdhn
5 years agoResponsive Resident
Sorting month on slicer
Hi All, I am struggling with how to sort the slilcer the way I need: I want as below: Feb Mar Aprl May But it is showing as: April Feb Mar May Thanks
sdhn
5 years agoResponsive Resident
Hi Knp,
I don't have month number. Please see snap shot below:
Thanks
KNP
5 years agoSuper User
You'll need to add one.
There are a few different ways to do this, in DAX, choose new column and enter this...
Month Number = MONTH(DATEVALUE(2021 & "/" & 'Date'[Month] & "/" & 1))
You'll need to rename the 'Date'[Month] to match your 'Table'[Column].
- sdhn5 years agoResponsive Resident
Thanks