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

G

gopal sharma

i want to use if(and) function more than one time. how long can i use this
function in a formula.
 
P

Pete_UK

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
 
S

Shane Devenshire

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.
 
G

gopalsharma777

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))).
 
P

Pete_UK

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
 

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