Show value anyway

P

Pat

If J33 contains a value a calculation will be performed and a result will be
returned
=IF(ISNUMBER(J33),E33-J33,"")

If J33 does not contain a value no calculation will be performed and no
value will be returned. However if E33 contains a value I would want the
value in E33 returned.
Anyone know if this is possible?

Thank you if you can be of help.
Pat
 
A

Arvi Laanemets

Hi

=IF(ISNUMBER(J33),E33-J33,IF(ISNUMBER(E33),E33,""))
But what about case where J33 contains a numeric value, but E33 doesn't?
Maybe

=IF(AND(ISNUMBER(J33),ISNUMBER(E33)),E33-J33,IF(ISNUMBER(E33),E33,""))


Arvi Laanemets
 

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

#VALUE! issue 1
VALUE issue 2
#Value Error 6
Averaging blank or cells with Zeros in them. 4
Student loan formula 8
vlook 6
LOOKUP FUNCTION? (LOOKUP VALUE BEING A TIME RENERATED FROM A FORMU 5
sumif? 3

Top