How do you calculate the original price when tax is already included? #203048
Unanswered
mikaylagrills
asked this question in
Discussions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Discussion Type
Question
Discussion Content
I'm working with a few invoices where the only value I have is the final amount paid, which already includes sales tax.
For example, if the total is $321.00 and the sales tax rate is 7%, what's the correct way to determine the original price before tax?
I initially tried subtracting 7% from the total, but I later realized that doesn't produce the correct result because the tax is already included in the final amount.
From what I've read, the calculation should be:
Original Price = Total Amount ÷ (1 + Tax Rate / 100)
Using the example above:
Is this the standard method used in accounting, or are there situations where a different approach should be used? Also, how do you normally handle rounding when the result has more than two decimal places?
All reactions