Function AND

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have excell 2002, in the explantion of function AND it says, that Logical1,
logical2, upto logical 30, how ever mine is available for only logical5,
(upto 5 logical). Can anybody help me how to make it upto 10 logical

Frank
 
I can get more than 5. What is your formula?

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
This is my formula Bob:
=IF(ISNUMBER($BC12),IF(AND(ISBLANK(B28),ISTEXT(D28)),+D28,""),"")
In the END function I need 10 combiinations in order to evaluate it to TRUE.
What I did is to make and again the fith (see below), I don't know if it is
right, but I see the result is as what as I expected

=IF(ISNUMBER($BC12),IF(AND(ISBLANK(B28),ISTEXT(D28),ISBLANK(B29),ISTEXT(D29),AND(ISBLANK(B30),ISTEXT(D30))),+D30,""),"")

Appreciate your idea Bob,

Frank
 
Frank,

Can't get the problem as I see it, but maybe this will give you a steer

=IF(ISNUMBER($BC12),IF(AND(COUNTBLANK(B28:B30)=3,COUNTBLANK(D28:D30)=3),D30,""),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

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

Back
Top