This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowThe Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more
Hi All,
I have the below sample data. When I created column chart with weekday on X-axis & Value on Y-axis. I am not able to order the weekday with actual day of the week order i.e monday, tuesday, wednesday....Holiday. I tried creating new column with switch DAX but its not working. I am getting below result on PBI. Can you please help to sort?
| WeekDay | Value |
| Monday | 5 |
| Friday | 4 |
| Saturday | 3 |
| Tuesday | 6 |
| Wednesday | 1 |
| Thursday | 8 |
| Sunday | 9 |
| Holiday | 2 |
Thanks
Solved! Go to Solution.
@Anonymous , if you have date in table create a sort column
Weekday = weekday([date])
Weekday1 = weekday
weekday sort = Switch( True(),
[Weekday]= "Monday" ,1 ,
//Add others
8//default value
)
And sort weekday 1 on weekday sort
https://docs.microsoft.com/en-us/power-bi/desktop-sort-by-column
else create
@Anonymous , Then refer to my second option
Weekday1 = weekday
weekday sort = Switch( True(),
[Weekday]= "Monday" ,1 ,
//Add others
8//default value
)
And sort weekday 1 on weekday sort https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-sort-by-column
@Anonymous , Then refer to my second option
Weekday1 = weekday
weekday sort = Switch( True(),
[Weekday]= "Monday" ,1 ,
//Add others
8//default value
)
And sort weekday 1 on weekday sort https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-sort-by-column
@Anonymous , if you have date in table create a sort column
Weekday = weekday([date])
Weekday1 = weekday
weekday sort = Switch( True(),
[Weekday]= "Monday" ,1 ,
//Add others
8//default value
)
And sort weekday 1 on weekday sort
https://docs.microsoft.com/en-us/power-bi/desktop-sort-by-column
else create
@amitchandak - I do not have a date column. I only have 2 columns weekday & value.
@Anonymous ,
You need to sort the WeekDay column using Value column. There is a option to do so in Data View.
After that, sort your chart on Weekday.(Check descending/ascending as per your requirement)
Please mark this as a solution if it help you solve your issue.
Regards,
Veena Shenolikar
Hi @Anonymous ,
You need to change the sorting of the chart from Values to Weekday column. Have you tried this?
Mark this as a solution if it helped solve your issue.
Veena Shenolikar
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
| User | Count |
|---|---|
| 23 | |
| 22 | |
| 14 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 47 | |
| 39 | |
| 24 | |
| 22 | |
| 20 |