if then else

sjhc1177

New Member
Joined
Nov 25, 2005
Messages
26
Hi I'm trying to create a commision statement for my employees.

I need to pay all employees that sell between 150 and 185 1%. Employees that sell over 185 would get 2%.

I need a formula not VBa.

Thanks,
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Assume sales figure is in A1
Code:
=if(A1>185,0.02,if(a1>150,0.01,0))

You might want to think about >= instead of >
 
Upvote 0
Comission

Sorry I was in a rush and wasnt very clear.

I only want to pay comission on sales that are over $150. Sales between 150 and 185 would receive 1% sales over 185 will get 2%. Anything less that 150 will get no comisssion.

Thanks.
 
Upvote 0
Comission

The example you gave does not work the way I need it to.

Here is what I need:

Employee sales between 0 and 149 = 0%
Sales beteen 150 and 184 = 1%
Sales over 185 =2%

What I started with was an if then else.

Thanks,
 
Upvote 0
Comission

The example you gave does not work the way I need it to.

Here is what I need:

Employee sales between 0 and 149 = 0%
Sales beteen 150 and 184 = 1%
Sales over 185 =2%

What I started with was an if then else.

Thanks,
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,536
Members
449,037
Latest member
tmmotairi

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