Calculating tax on rebates

  • Thread starter Thread starter Sabosis
  • Start date Start date
S

Sabosis

Hello-

I need to get a quick calulation to help me sovle a problem. I need to
issue a $50.00 credit, but need to take a tax rate into account. I
need to know the calculation if the $50.00 final credit amount is in
A1, and the tax rate is in A2, what calculation would be in cell A3
that would show the pretax price?
 
This is pretty straightforward algebra:

f = p * (1 + r)

So

A3: = A1 / (1 + A2)
 
If your tax rate is a a real Excel percentage (entered like15%):

=A1/(1+A2)
 

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