Baseline Formula

  • Thread starter Thread starter George
  • Start date Start date
G

George

Excel 2007
I am trying to get a formula to do the following commision;
If A1 is less then or equal to $2,000.00 then B2 would equal 2% of that
amount.
If A1 is greater then $2,000.00 then B2 would equal 2% of the $2,000.00 plus
5% of the amount over the $2,000.00 baseline.
 
=IF(A1<=2000,A1*2%,40+(A1-2000)*5%)
or
(A1*2%)+(A1>2000)*(A1-2000)*5%
best wishes
 
Something is wrong, when I am equal to or below $2,000.00 it's fine, but when
I go above $2,000.00 it shows a negative number. It should show the 2% plus
the 5% above the $2,000.00
 
I was too hasty; yes we need
=A1*2%+(A1>2000)*(A1-2000)*3%
thanks for the heads up!
 
=MIN(0.02*A1,40)+MAX(0.05*(A1-2000),0)

Another option...

= Max(0.02*A1, 0.05*A1 - 60)

= = =
Dana DeLouis
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

More than 1 Variables 1
Pivot Puzzle 3
Macro - To Include Summing All Similar Entries 1
=IF formula 3
If function 2
If Statement - Date Calculations 3
If Statement - Date Calculations 1
Formula with references 1

Back
Top