IF/AND/OR FORMULA HELP NEEDED

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

Guest

I have a spreadsheet that has coloum A with a value of IN or OUT. coloum B
has an eight digit number greater than zero as a serial number. I am trying
to use a formula with logical functions that when A=IN, and B has a eight
digit number, the result is my name being filled in the cell in C. When the
value of A=OUT, and an eight digit number is present in B, the result is
"Tier 2" in C. Finally, when there is no eight digit number present in B, the
cell in C is empty with no text. Below is my attempt which, obviously choked.
Any suggestions?

=IF(AND(F3>0,C3="IN")=TRUE,"C. HOUCHEN","(OR(F3>0,C3="OUT")="TRUE")","")
 
You say IN/OUT is in column A, but your formula is looking in column C.
Anyway, assuming your text is correct, see if this formula does what you
want...

=IF(OR(NOT(ISNUMBER(B1)),LEN(B1)<>8),"",IF(A1="IN","Clark","Tier 2"))

Rick
 
=IF(AND(F3>0,C3="IN"),"C. HOUCHEN",IF(AND(F3>0,C3="OUT"),"Tier 2",""))
if we leave the cell references as you had them in your attempt, or
=IF(AND(B3>0,A3="IN"),"C. HOUCHEN",IF(AND(B3>0,A3="OUT"),"Tier 2",""))
if we use columns A & B as you describe.
 

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

Similar Threads

Time Duration Calculation help needed 4
Excel Need Countifs Formula Help 0
Lookup value needed 3
searching 2 values from 2 cells 5
formula error 1
Trim Numbers 3
League standings based off final scores 5
Lookup Formula Needed 3

Back
Top