Excel, multiple if statements
I'm in over my head on this one. Can anyone write an if statement for one cell with the following conditions:
if BB>0, B6>0, BA<-.3, BA>-1.2 THEN O11-.1
开发者_如何学Go
if BB>0, B6<0, BA>.3 THEN O11+.1
Leave cell blank if neither condition is met.
Is this possible? Thanks
=IF(AND(BB>0,B6>0,BA<-.3,BA>-1.2),O11-.1,IF(AND(BB>0,B6<0,BA>.3),O11+.1,""))
The above formula should do the trick. The only thing I'm having trouble understanding is what are BB and BA? Are they named cells? If not they are not valid cell references and could cause problems in the formula.
精彩评论