Forum Discussion
Order column chart by month over multiple years
- 8 years ago
Formula should be:
Financial month number = IF(DateKey[Month number]-4<=0,DateKey[Month number]+8,DateKey[Month number]-4)
- 8 years ago
Thanks, that does it :-)
You have field Financial Month Number. Sort Month column by that field.
Nope
- RolandsP8 years ago
Resolver IV
Then you need to check value in this field. Based on the chart you sent for Jan you have number 5, although it should be 9.
- wenners688 years ago
Helper II
Yes, you're correct. I used the following calculation to get the financial month:
Financial month number = IF(DateKey[Month number]-4<=0,DateKey[Month number]+4,DateKey[Month number]-4)
Problem being that my financial starts in May (month #5) and finishes in April (month #4), so the calc above won't cope with that scenario.
- RolandsP8 years ago
Resolver IV
Formula should be:
Financial month number = IF(DateKey[Month number]-4<=0,DateKey[Month number]+8,DateKey[Month number]-4)