Forum Discussion
Sorting by month name for Date Hierarchy in DirectQuery
Hi guys,
I do know date hierarchy is not available for DirectQuery as of now.
However I created a custom DateDim table with different columns like (Date, Year, Quarter, MonthNumber, MonthNames etc.)
I joined my date field with the date field in DateDim table. It shows data fine, However when I drill down the data to Month it starts from April, August etc.. till September in Alphabetical order rather than chronological order. The sorting changes when it's drilled down so can't keep default sorting on single column in hierarchy.
Please let me know if there are any options for this.
Thanks!
- Anonymous9 years ago
I can't quite see what your issue is from your description. Per http://databear.com/2016/04/23/power-bi-tips-sort-by-month-name/, you add the Month number column via Power Query editor (i.e. "Edit Query"), but the sort itself is set in the report editor under the Modelling tab - the sort doesn't happen in "Edit Query"?
9 Replies
- edejes2Advocate IV
Hello,
I created this video hope this is the solution you are looking for https://youtu.be/n_gnuFS8qoY
Regards!
Erich Dejesus
- wikiFrequent Visitor
May be you could create a new column as shown below in DimDate and sort your month column by the new column.
sortMonthYear = 'DimDate'[Month] + ('DimDate'[Year] * 12)
- AnonymousNot applicable
I think this guide might help: http://databear.com/2016/04/23/power-bi-tips-sort-by-month-name/
Or this: https://www.google.com.au/webhp?q=power+bi+sort+by+month
- BaskarResident Rockstar
Yes u r correct .
If it is default Hierarchy it will short fine.
If u create any custom hierarchy u have to create short order for all level. so here u have to create one more extra column for month. and apply that column to month short.
like Example :
Switch (Month,"Jan",1,"Feb",2, etc...)
let me know if any help
- User19Frequent Visitor
- AnonymousNot applicable
I can't quite see what your issue is from your description. Per http://databear.com/2016/04/23/power-bi-tips-sort-by-month-name/, you add the Month number column via Power Query editor (i.e. "Edit Query"), but the sort itself is set in the report editor under the Modelling tab - the sort doesn't happen in "Edit Query"?