Help with and /if formulas

C

CT Cameron

Help with adding or combining 3 formulas into one. I would like to combine
the following using the AND or IF?? The first formula is created in I2 and
reads =IF(C2 said:
7 refer to L2 (lookup column) Each of these formulas work just fine
independently but rather than have 3 columns of info, I would like to shorten
it to one column having all the referencing.

Pleae help. Thanks!
 
T

Toppers

=IF(C2<>0,"NA",IF(F2<7,"NA",IF(F2>7,L2,"?")))

What happens if F2=7?

And I wasn't sure about L2 lookup but hopefully this gets you started.

HTH
 
S

Scoops

CT said:
Help with adding or combining 3 formulas into one. I would like to combine
the following using the AND or IF?? The first formula is created in I2 and

independently but rather than have 3 columns of info, I would like to shorten
it to one column having all the referencing.

Pleae help. Thanks!

Hi CT

Does this do what you want?

=IF(AND(C2=0,F2>7),L2,"NA")

Note that, as a personal preference, I prefer to check for the positive
C2=0 rather than the negative C2<>0; I find it easier to read.

Regards

Steve
 
C

CT Cameron

Thank-you. I have it working with your help.

Toppers said:
=IF(C2<>0,"NA",IF(F2<7,"NA",IF(F2>7,L2,"?")))

What happens if F2=7?

And I wasn't sure about L2 lookup but hopefully this gets you started.

HTH
 
C

CT Cameron

Thank-you. This worked just fine. I had two replies with two different ways
and they both worked. Your formula was quite a bit shorter and had the same
effect.

Thank-you!!
 

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