Amy
Amy

Reputation: 3

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. if BB>0, B6<0, BA>.3 THEN O11+.1

  3. Leave cell blank if neither condition is met.

Is this possible? Thanks

Upvotes: 0

Views: 1389

Answers (1)

guitarthrower
guitarthrower

Reputation: 5834

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

Upvotes: 1

Related Questions