I am trying to create a spreadsheet so that users can change start month from drop down list, for example if they choose June all months prior to June will read as 0 and all the months after (including June) will have the recurring value. I have tried to accomplish this with a nested IF formula, it works fine except when June is selected I have 'FALSE' returned for all.
This is my original formula...
=IF($B39="December",0,IF($B39="November",0,IF($B39="October",0,IF($B39="September",0,IF($B39="August",0,IF($B39="July",0,IF($B39="June",$C39,IF($B39="May",$C39,IF($B39="April",$C39,IF($B39="March",$C39,IF($B39="February",$C39,IF($B39="January",$C39,IF($B39="","")))))))))))))
I cannot figure out why it is returning false, I even tried a cascading nested IF but that didn't work either. I cannot have any macros in this particular workbook so that isn't an option for me.
Any help is appreciated.
This is my original formula...
=IF($B39="December",0,IF($B39="November",0,IF($B39="October",0,IF($B39="September",0,IF($B39="August",0,IF($B39="July",0,IF($B39="June",$C39,IF($B39="May",$C39,IF($B39="April",$C39,IF($B39="March",$C39,IF($B39="February",$C39,IF($B39="January",$C39,IF($B39="","")))))))))))))
I cannot figure out why it is returning false, I even tried a cascading nested IF but that didn't work either. I cannot have any macros in this particular workbook so that isn't an option for me.
Any help is appreciated.