farmula

arshadbhatti309

New Member
Joined
Aug 22, 2011
Messages
1
i want to prepare a worksheet in which i need the formula for

example

people having salaries ranging from Rs. 10000 to 50000 and company decides to give incentive to the employees recieving salary less than 10000 @ 50%, less than 20000 @ 40%, less than 30000 @ 30% and more than 30000 @ 20%

please tell me the formula in excel sheet to calculate the amount of incentiv
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
I think I understand what you are looking for, assuming the amount will be entered into cell, say A1, you could set up an if function:

=IF(A1<10000,A1*0.5,IF(AND(A1>10000,A1<20000),A1*0.4,IF(AND(A1>20000,A1<30000),A1*0.3,IF(A1>30000,A1*0.2))))

Is this what you meant?
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,850
Members
452,948
Latest member
UsmanAli786

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