Share via

Excel IF function HELP

Anonymous
2015-09-07T02:09:05+00:00

I'm having trouble with two Excel IF functions. The ratings described are Effectiveness(H7), Efficiency(I7), and Quality(J7). Salary is in G7.

  1. If all three ratings are 90 or above, then the employee receives a bonus of 20% of their base salary. Otherwise, if all three ratings are 85 or above then the employee receives a bonus equal to 10% of their base salary. Otherwise, the employee does not receive any bonus. 

I've tried =IF(H7:J7>90,G7*0.2,IF(H7:J7>85,G7*0.1,0)) and get #VALUE!

  1. If all three ratings are above 90, then the employee receives a bonus equal to 25% of her base salary. Otherwise, if at least one of the ratings is above 85 and none of the ratings are below 70, then the employee receives a bonus equal to 12% of their base salary. Otherwise, if all three ratings are 80 or above then the employee receives a bonus equal to 5% of their base salary. Otherwise, if at least one of the ratings is above 80, then the employee receives a bonus equal to 2.5% of their base salary. Otherwise, the employee does not receive any bonus (zero dollars). 

Any help would be appreciated!

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2015-09-07T02:31:25+00:00

=IF(AND(H7>=90,I7>=90,J7>=90),G7*0.2,IF(AND(H7>=85,I7>=85,J7>=85),G7*0.1))

2.

=IF(AND(H11>=90,I11>=90,J11>=90),G11*0.25,IF(OR(H11>=70,I11>=70,J11>=70),G11*0.12,IF(AND(H11>=80,I11>=80,J11>=80),G11*0.05,IF(OR(H11>=80,I11>=80,J11>=80),G11*0.025,))))

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

1 additional answer

Sort by: Most helpful
  1. OssieMac 48,001 Reputation points Volunteer Moderator
    2015-09-07T02:39:51+00:00

    Try the following.

    =IF(COUNTIF(H7:J7,">=90")=3,G7*0.2,IF(COUNTIF(H7:J7,">=85")=3,G7*0.1,0))

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments