Formula

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

Guest

Hi

I have a formula that goes like this: =IF(C10>B10,C10-B10,"…").

In cells C and B there are times, however. they put in "Not Running" in cell
"C" and therefore I get a return error of #Value.

How can Ii change my formula to calculate the difference in cells C and B
but leave the cell empty if cell C has "Not Running" in it.

Thanks
 
Hi!

Can't tell what you have as Value_IF_False argument?

Try this and replace XXX as needed:

=IF(ISTEXT(C10),"",IF(C10>B10,C10-B10,"XXX"))

Biff
 

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