IF and AND formula

hyruleramone

Board Regular
Joined
Jul 8, 2014
Messages
52
Hello,

I need to build a formula that can tell me that if my salary rank is 2 then i get 2% bonus, but if I work at night I get 1% extra bonus. The way I know i work at night is because there is a column that says N -->

Salary Rank Salary Work At Night
2% 200 N

math should be: (0.02 + 0.01) * $200 = $6

how can i accomplish this with IF and AND?

Could it be something like: =IF(AND(B2=2,"3%")=N,+"1%")*C2

Thanks.
 
Last edited:

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Assuming the data is in A1:C1, place this formula in D1: =IF(C1="N",(0.02+0.01)*B1,0.02*B1)
 
Upvote 0
Assuming the data is in A1:C1, place this formula in D1: =IF(C1="N",(0.02+0.01)*B1,0.02*B1)

Thanks for the answer.

I am doing a homework and the teacher put me to practice IF and AND, so how can I add do it with IF(AND....?

is there a way?
 
Upvote 0

Forum statistics

Threads
1,214,988
Messages
6,122,620
Members
449,092
Latest member
amyap

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top