Warning

 

Close
Confirm Action

Are you sure you wish to do this?

Cancel Confirm
AR15.COM
2/17/2011 5:22:09 AM EDT
Quick question (although I may have to ask a few more):

The formula I am trying to craft is this:

If H4 + H5 are Zero, then Zero, if not, then F8

No matter how I lay it out, the formula isn't working.

Thanks!
2/17/2011 5:24:53 AM EDT
[#1]
IF((H4+H5)=0,0,F8)

That's if the sum is zero.  If your test is that both are zero, then this:

IF(AND(H4=0,H5=0),0,F8)
2/17/2011 5:26:38 AM EDT
[#2]
Quoted:
Quick question (although I may have to ask a few more):

The formula I am trying to craft is this:

If H4 + H5 are Zero, then Zero, if not, then F8

No matter how I lay it out, the formula isn't working.

Thanks!


Try this

=if(sum(h4,h5 =0),"0",f8)


eta.
beat.
2/17/2011 5:29:31 AM EDT
[#3]
Sorry, never got beyond Visicalc  
2/17/2011 5:30:54 AM EDT
[#4]
OK, now I've got it. I was missing the parentheses over the entire formula. Works fine now.

Thanks, fellas.

Like I said, I may have another question because I'm in the middle of creating an estimator and have been away from Excell for about 10 years now.

My Excell thinking cap is a wee bit rusty.