paulfurlong

New Member
Joined
Sep 4, 2008
Messages
5
hi, I hope someone might be able to help me formulate a simple bonus payment spreadsheet!

I am trying to fathom "less than greater than" syntax in a formula without much success...!

In simple terms I am trying to find a formula that says:

In n27 i need a formula "if n26 (total revenue) figure is between 62000 and 105,000 then work out 10% of that figure, if not return 0"

In n28 I need a formula "if n26 is 105,001 and greater then return a value of 30% of that figure, if not return 0"

Any help is much appreaciated!
Thanks in advance
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Hi,

N27: =IF(AND(N26>=62000,N26<=105000),N26*0.1,0)
N28: =IF(N26>105000,N26*0.3,0)

HTH,

James
 
Upvote 0
Thanks, but my apologies!!! I wrote it wrong... it should be

In n27 i need a formula "if n26 (total revenue) figure is between 62000 and 105,000 then work out n26-62000*10%, if not return 0"

In n28 I need a formula "if n26 is 105,000 and greater then return a value of 30% of anything greater than 105,001, if not return 0"


Thanks again!
 
Upvote 0
Thanks Barry,
Nearly.... if n26 is 120,000 then the person should get as bonus 10% of anything between 62,000 and 105,000 = 4,300 (n27)
if the earn over 105,000 eg 120,00 then they also get 4,500 as you suggested (figure in n28)

But conversley if the figure is 100,00 in n26, then they only get the 10% of the amount between 62,000 and 100,000 = 3800. Therefore n28 will be 0.

hope that makes sense!

thanks again, really appreciate it.
 
Upvote 0

Forum statistics

Threads
1,215,223
Messages
6,123,715
Members
449,118
Latest member
MichealRed

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