Formula problem

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

Guest

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
 
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

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
I'm not exactly sure what you want, but this might be it:
=IF(ISNUMBER(H33),IF(H33>=0,(H33*N33)-R33,""),"")
 
Back
Top