I WANT TO USE =IF(AND(),IF(AND(),IF(AND()).

  • Thread starter Thread starter gopal sharma
  • Start date Start date
G

gopal sharma

i want to use if(and) function more than one time. how long can i use this
function in a formula.
 
There are a number of ways of overcoming the limit of 7 nested
functions. Why don't you describe what you want to do, and I'm sure
you'll get a number of suggestions as to how to achieve that.

Pete
 
Hi,

For the IF you can nest it 7 levels deep in 2003 and earlier, in 2007 you
can nest 64 levels deep. However, often you can beat these limits by using
VLOOKUP or by concatenating the IF's. =IF(A>12,B,"")&IF(A>5,15,"") and so
on.
 
There are a number of ways of overcoming the limit of 7 nested
functions. Why don't you describe what you want to do, and I'm sure
you'll get a number of suggestions as to how to achieve that.

Pete



- Show quoted text -

hi,
my name is Gopal Sharma. i have posted this question yesterday. if it
is possible please explain it by an example. i have used this function
but it was not working.
right now i have solved this formula and it is working properly. here
is an example what i have wrote-->>
IF(AND(LOGICAL 1,LOGICAL 2),(VALUE IF TRUE),IF(AND(LOGICAL 1,LOGICAL
2),(VALUE IF TRUE),IF(AND(LOGICAL 1,LOGICAL 2),(VALUE IF TRUE),VALUE
IF FALSE))).
 
Here's an example based on an earlier posting:

=IF(A2=B2,"Equal",IF(A2-B2=1,"One Less",IF(A2>B2,"More than 1
Less","Greater")))

But I still don't know what your real problem is - give some details
here about what you want to achieve.

Hope this helps.

Pete
 
Back
Top