Multiply IF function needed

excelnoob9

New Member
Joined
Jun 12, 2018
Messages
1
Hello All,

I am trying to build a spreadsheet to generate sales commission if their production is over a certain amount.

For instance, if they produce $1.25mil they get $1.25 per thousand dollars if it below $1.25mil it will be $1 per thousand. So if they do the $1.25mil their commission would end of being $1562.50. If their production was $1,249,999.99 their commission would be $1249.99.


[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Monthly Production[/TD]
[TD]$1,250,000.00[/TD]
[/TR]
[TR]
[TD]Commission[/TD]
[TD]X[/TD]
[/TR]
</tbody>[/TABLE]
$1.25/per thousand




[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Monthly Production[/TD]
[TD]$1,249,999.99[/TD]
[/TR]
[TR]
[TD]Commission[/TD]
[TD]X[/TD]
[/TR]
</tbody>[/TABLE]

$1/per thousand



Thanks!
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Welcome to the Board!

If their production was $1,249,999.99 their commission would be $1249.99.
That leads me to believe that it is really 0.1% as opposed to $1 per thousand, or else they could only receive whole dollars (i.e. $1249.00).
If that is the case, try this:
Code:
=B1*IF(B1>=1250000,.00125,.001)
for a value in cell B1.
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,182
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

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