Combining 2 IF statements

  • Thread starter Thread starter Browny
  • Start date Start date
B

Browny

I record a date in 'A1' when I receive registered documents.
My 'IF' statement in C1 then adds "working on file" in C1.
I then record a date in B1 when I forward the file on.
I wish to replace the "working on file" statement with "passed" when a date
is entered into B1.
I tried =IF(A1&B1>1,"PASSED",IF(A1>1,"working on file","") but it doesn't
work.
Can you help?
 
Do you need to test both A1 and B1? If there is a value in B1, wouldn't it
be safe to assume there is (or should be) a value in A1?

=IF(B1>1,"PASSED",IF(A1>1,"working on file","")

If you need to check both, you could revise your existing formula:
=IF(AND(A1>1, B1>1), "PASSED", IF(A1>1,"working on file","")
 

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

IF statements - 26 combinations 21
Nested IF Help 3
Need formula 3
Help to create a macro 2
If Functions Time 13
Formula for If "" AND "" are true... 3
Substitute IF statement. 9
VLOOKUP & IF or Sumproduct 7

Back
Top