Forum Discussion

User19's avatar
User19
Frequent Visitor
9 years ago
Solved

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!

9 Replies

  • wiki's avatar
    wiki
    Frequent 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)  

     

      

  • Baskar's avatar
    Baskar
    Resident 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

    • User19's avatar
      User19
      Frequent Visitor

      BaskarAnonymouswikiAppreciate your replies.

       

      I am using DirectQuery to create dynamical hierarchy. The sorting in Edit Query has no affect on dimension when used in visual .

      • Anonymous's avatar
        Anonymous
        Not applicable

        User19,

        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"?