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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello, I have created below column and when I am adding it to slicer it is not giving me correct sorting order. how can I fix it?
WeekEnding =
VAR myWeekNum = WEEKNUM([Date])
VAR myYear = YEAR([Date])
VAR myEndDate = CALCULATE(MAX([Date]),FILTER(ALL(DateSlicer),YEAR([Date])=myYear && DateSlicer[WeekNum]=myWeekNum && DateSlicer[WeekDay]=6))
VAR myEndDate1 = IF(NOT(ISBLANK(myEndDate)),myEndDate,CALCULATE(MAX([Date]),FILTER(ALL(DateSlicer),YEAR([Date])=myYear+1 && DateSlicer[WeekNum]=1 && DateSlicer[WeekDay]=6)))
VAR myEndDate2 = IF(NOT(ISBLANK(myEndDate1)),myEndDate1,MAX([Date]))
RETURN " Friday " & myEndDate2
Solved! Go to Solution.
Press on your column where you have put the values for the slicer , you will find in column tools above something called sort column by , pressit and choose by weeksort column this should fix it
To sort weeks create a week id
Weekid =
VAR _y = Year(min('table'[Date]))
RETURN
WEEKNUM('table'[Date],2) + (YEAR('table'[Date]) - _min) *53
I am using slicer and I am using weekending column from above post. how would your column help me to sort weekending column?
Can you please show me a sample of th results?
your soultion works fine. but what I want is I am trying to add different column on slicer and how can I sort it
in above screenshot, weeksortid is your calculation which is working fine but and I want to sort it by Weekendingtest column in slicer. how can I achieve that?
Press on your column where you have put the values for the slicer , you will find in column tools above something called sort column by , pressit and choose by weeksort column this should fix it
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 10 | |
| 10 | |
| 6 | |
| 6 |