Nested IF Statements - Worksheet Function

S

Shorty

How many IF Statements can be nested together on a
worksheet?

For instance, the Syntax is:
IF(logical_test, value_if_true, value_if_false), then what
I need to do is nest the IF States similar to the
following:

IF(IF(IF(IF(IF(IF(logical_test, value_if_true,
value_if_false), , value_if_true, value_if_false),
value_if_true, value_if_false), value_if_true,
value_if_false), value_if_true, value_if_false))

I also need to nest in the "value_if_true"
and "value_if_false" positions.

TIA,

Shorty
 
F

Frank Kabel

Hi
7 nested functions is the max.
If you need so many comparisons in most cases a lookup table and using
VLOOKUP is a better alternative
 
S

Shorty

Frank,

Thanks for the quick response. I'll also investigate
VLookup.

Regards,

Shorty
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top