Forum Discussion
wenners68
8 years agoHelper II
Order column chart by month over multiple years
I'm trying to order the columns by month over a financial year that starts in May and finishes in April. Most examples I have come across only deals with January to December scenarios. Any ideas ho...
- 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 :-)