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

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
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,215,518
Messages
6,125,293
Members
449,218
Latest member
Excel Master

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