Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
I have a bar chart with the names of the month on the x-axis.
What is the easiest way to sort them (names) so that the current month is at the end of the chart on the right and the rest in succession?
April | May | June | July | August | September | October | November | December | January | February | March |
In April:
May | June | July | August | September | October | November | December | January | February | March | April |
etc.
=IF(num("MonthName")-month(Today())>0,num("MonthName")-month(Today()),12+num("MonthName")-month(Today()))
Same formula, then, just add +1 to the inner structure to push every month one step up the line.
Thanks for help!