Excel

V

vnoble

Need a formula for the following please:

Rate 4.95%
Upto 3,500 exempt ie; to $ 3,500
Maximum 43,500 - Maximum charge is $43,500
 
J

JLatham

Exactly what are you trying to calculate? Using the values you've given,
tell us what you intend to do with them and what your expected result is,
please.

But maybe something like this:
A1 = 4.95%
A2 = 3500
A3 = 43500
A4 = user entered value (as 45000)
formula could be
=IF(A4-A2>A3,"Too Much",IF(A4<=A2,0,(A4-A2)*A1))
which says
if the amount after subtracting 3500 from the user entered value is greater
than the limit set in A3 (43500) then say "Too Much", but if that is ok, then
if the user entered value is below the exempt value, then show zero,
otherwise, take the user entered amount, subtract the exempt amount from it
and multiply that by the percentage in A1 and show the result: 2054.25 in my
example using 45000 as the user entered value.
 

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