If Formula Nesting Level Error

mcam22

New Member
Joined
Jul 1, 2013
Messages
1
I am trying to use the following formula in Excel 2007, but I keep getting the following error message: "The specified formula cannot be entered because it uses more levels of nesting than are allowed in the current file format"

Can anyone help? This is the formula I am trying to use:


=IF(F2="January","April",IF(F2="February","May",IF(F2="March","June",IF(F2="April","July",IF(F2="May","August",IF(F2="June","September",IF(F2="July","October",IF(F2="August","November",IF(F2="September","December",IF(F2="October","January",IF(F2="November","February",IF(F2="December","March",""))))))))))))</SPAN>
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
with
F2: a month name....February

This regular formula returns the name of the month that is 3 months after that month:
Code:
G2: =TEXT(EDATE(F2&1,3),"mmmm")

In that example, the formula returns: May

Is that something you can work with?
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,198
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top