Forum Discussion
Anonymous
4 years agoNot applicable
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
- Anonymous4 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.
Anonymous
4 years agoNot applicable
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.