Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Matrix table - Fiscal Year

Hi there,   I have a matrix table and I want to change the display format to fiscal. How can I do it? Thanks,     This is how my Date Dimension table look like    
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi Anonymous ,

     

    Please use the following formula to create a Rank column, and then sort Month column by it:

    Rank = 
    var _first= CALCULATE(MIN('Table'[Month No]),FILTER('Table',[Fiscal  Quarter]="Q1"))
    return IF([Month No]>=_first,[Month No],12+[Month No])

     

    Output:

     

    Best Regards,
    Eyelyn Qin
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.