Formula

P

pjd

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
 
B

Biff

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
 
Top