开发者

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:

  1. if BB>0, B6>0, BA<-.3, BA>-1.2 THEN O11-.1

  2. 开发者_如何学Go
  3. if BB>0, B6<0, BA>.3 THEN O11+.1

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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜