Formula problem

F

Frances C

currently I am using this formula =IF(H33>0,(H33*N33)-R33,"") I works good,
but if I enter H33=0 and N33=0% R33=0 I want the result to be 0, and also
keep the formula showing only if I have number on H33.

How can I solve this problem
 
S

Sandy Mann

Won't simply =IF(H33>=0,(H33*N33)-R33,"") do what you want?

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

[email protected]
Replace @mailinator.com with @tiscali.co.uk
 
W

Wondering

I'm not exactly sure what you want, but this might be it:
=IF(ISNUMBER(H33),IF(H33>=0,(H33*N33)-R33,""),"")
 
Top