apply different prices to different quantities (variable pricing?)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to apply a different price to different quantities in the same number.
For example, my volume is 3500 (input cell). I need to apply $.006 to the
first 2000, and $.003 to anything above 2000. What is the formula?
 
Assuming the 3500 (or other quantity) is in A1, then this will work from any
other cell:
=IF(A1>2000,0.006*2000+0.003*(A1-2000),0.006*A1)
 
That worked. Thank you.

JLatham said:
Assuming the 3500 (or other quantity) is in A1, then this will work from any
other cell:
=IF(A1>2000,0.006*2000+0.003*(A1-2000),0.006*A1)
 

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

Back
Top