URGENT - Where do i start!

J

jack.crombie

I have untill about 10am sydney time on the 28th Nov...
I have a number that when within a certain bracket needs to generate
the corresponding bonus ammount
if a consultant makes between $3000 and $3999 then the bonus is $50
If a consultant makes between $4000 and $4999 then the bonus is $75 and
so on
i need a formula to do that automatically
the bonus value ammount is in L16 so that would be where the formula is
and the total monthly sales is in L14

PLEASE HELP I only have 9 hrs
 
D

Domenic

Try...

=LOOKUP(L14,{0,3000,4000,5000},{0,50,75,100})

Adjust the brackets and bonus amounts accordingly.

Hope this helps!
 
J

jack.crombie

It's ok i've done it by nesting a huge number of IF and and statements.
If i hit limitations with that i'll leave something here
 
D

Dana DeLouis

It's ok i've done it by nesting a huge number of IF

Another option:
[Bonus] =(Sales>=3000)*(INT(Sales/1000)*25-25)

HTH
 

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

Top