Another "IF' question

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

Guest

Please help create a formula for this situation:

We charge for perforating paper 15.00 per 1000; with a minimum of 15.00 so
anything 0-1000 is $15, 1001-2000 is $30, etc.

Thanks,
Barb
 
Please help create a formula for this situation:

We charge for perforating paper 15.00 per 1000; with a minimum of 15.00 so
anything 0-1000 is $15, 1001-2000 is $30, etc.

Thanks,
Barb

Your example suggests that the minimum charge is $15 for each 1000 sheets **or
fraction thereof**.

That being the case:

=CEILING(A1/1000*15,15)


--ron
 
If the number is in A10, use this:

=(ROUNDDOWN(A10/1000,0)+1)*15

Eric


Your formula gives $15 for 0 sheets; $30 for 1000 sheets; etc -- not what the
OP requested.


--ron
 

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