Free VAT Calculator Online
Calculate vat values with interactive charts and detailed breakdowns.
Ad space
Ad space
How to use the VAT Calculator
- 1
Open the VAT Calculator tool
- 2
Enter your data or upload your file
- 3
Adjust settings if needed
- 4
Get instant results
- 5
Download or copy your output
Frequently asked questions
Is the VAT Calculator free?
Yes, our vat calculator is 100% free with no limits, no signup, and no watermarks.
Do I need to create an account?
No. You can use the vat calculator without any registration. Just open it and start using it.
Is my data safe?
Yes. Any files you upload are automatically deleted after 5 minutes. We never store, share, or access your data.
Does this work on mobile?
Yes. The vat calculator is fully responsive and works on phones, tablets, and desktops.
Is there an API for this?
Yes. All our tools are available as API endpoints for developers. Check our API documentation for details.
Working out value-added tax by hand is easy to get wrong in one specific way: when a price already includes VAT, the tax portion is not simply the headline rate multiplied by the total. A VAT calculator handles both directions of that problem correctly — adding VAT on top of a net price to reach the amount a customer pays, and pulling VAT back out of a VAT-inclusive price to reveal what the seller actually keeps — so neither calculation depends on remembering which formula applies to which direction.
How the VAT Calculator Works
The tool runs two modes from the same input fields, and switching between them changes which number the rate gets applied to:
- Add VAT mode. Enter a net amount — the price before tax — and a VAT rate as a percentage. The calculator multiplies the net figure by the rate to get the VAT amount, then adds the two together to show the gross, VAT-inclusive total. This is the direction a supplier uses when quoting a price to a VAT-registered business that expects net figures, or when building a VAT-inclusive retail price from a cost base.
- Remove VAT mode. Enter a gross amount — a total that already has VAT baked in, such as a receipt total or an advertised consumer price — and the same rate. Rather than multiplying the gross figure by the rate directly, the calculator divides it by one plus the rate to isolate the net amount, then subtracts that from the gross to show exactly how much of the total was VAT. This reverse step is the one most manual attempts get wrong, and it's covered in detail below.
- Instant recalculation. Every field updates the result the moment a number changes, so testing a different rate or a revised price takes no extra step — there's no separate "calculate" button to press.
Developers who need this same add-or-remove VAT math inside their own invoicing system, checkout flow, or accounting integration can skip the browser form entirely and call the metered API endpoint documented at /docs. It accepts the same net-or-gross amount and rate and returns the same breakdown the browser tool displays, which keeps a backend's tax math consistent with whatever a human might independently verify using the web version.
Why People Reach for a VAT Calculator
VAT touches a wider range of everyday and business situations than it might first appear:
- Pricing a product for a VAT-registered market. A small business setting a retail price needs to decide on a net cost basis and then work out what the VAT-inclusive shelf price becomes, since customers in most VAT jurisdictions expect to see one all-in figure rather than tax added at checkout.
- Reclaiming VAT on a business expense. A freelancer or company filing a VAT return needs to know exactly how much of each supplier invoice was VAT, separate from the net cost, in order to reclaim it correctly rather than estimating.
- Checking a supplier's invoice. When an invoice shows a gross total and a rate but not a broken-out VAT line, removing VAT from that gross figure confirms the net cost actually being charged before payment goes out.
- Cross-border online shopping. Shoppers buying from an overseas retailer sometimes see a price with the seller's home-country VAT included and want to know the underlying net cost, particularly when comparing it against a domestic price quoted without tax.
- Quoting a project to a client. Contractors and consultants often think in net terms internally but must present a VAT-inclusive figure in a formal quote, and getting that translation exactly right avoids an awkward correction later.
- Comparing supplier quotes from different countries. Two suppliers quoting different net prices under different VAT regimes can only be compared fairly once both are converted onto the same basis — either both net or both gross — which is exactly what switching between the calculator's two modes accomplishes.
Technical Deep Dive: Why Removing VAT Isn't "Subtract the Percentage"
The single most common VAT mistake is treating the rate as if it applies to the gross amount in both directions. It doesn't, and the reason comes down to what the rate was originally calculated against.
Adding VAT is straightforward multiplication against the net: gross = net × (1 + rate). A $200 net price with 20% VAT becomes 200 × 1.20 = $240. The $40 of VAT is 20% of the $200 net figure — that part matches intuition.
Removing VAT from that same $240 gross figure is where the shortcut breaks. Taking 20% of $240 gives $48, and subtracting that from $240 leaves $192 — which is wrong on both counts. The actual net figure is $200 and the actual VAT is $40, because the 20% rate was always defined against the net amount, not the gross one. Dividing the gross by (1 + rate) undoes the multiplication correctly: 240 ÷ 1.20 = $200 net, and $240 − $200 = $40 VAT. The error in the naive shortcut grows with the rate — at a 25% rate, treating gross × 25% as the VAT amount overstates it by a full 5 percentage points of the gross value.
VAT rates themselves are not uniform. Countries that levy VAT typically set a standard rate that applies to most goods and services, alongside one or more reduced rates for categories like groceries, books, children's items, or public transport, and some goods are exempt or zero-rated entirely. None of that classification is something a calculator can determine on its own — the rate has to be the one that actually applies to the specific good or service in question, entered by the person doing the calculation, which is exactly how this tool is designed to work: it computes the math correctly for whatever rate is entered, but it does not look up or assume a jurisdiction's rate automatically. A common data-entry slip is worth watching for too — typing a rate as a decimal where the field expects a whole percentage, or the reverse, entering "0.2" when "20" was meant for a twenty percent rate — so it's worth a glance at the resulting VAT amount before relying on it, particularly for a rate that isn't used often.
| Method | Handles reverse VAT correctly | Speed | Shows the VAT amount separately |
|---|---|---|---|
| Subtracting the rate % from the gross total | No — systematically overstates the VAT amount | Fast but wrong | Misleading figure |
| Manual division by hand | Yes, if the formula is remembered correctly | Slow, error-prone under time pressure | Yes, with an extra subtraction step |
| Spreadsheet formula | Yes, once set up correctly | Fast after setup, slower for a one-off check | Yes |
| Dedicated VAT calculator | Yes, built for both directions | Fast, one screen | Yes, shown directly |
VAT Calculator vs Spreadsheets and Accounting Software
A spreadsheet with a saved formula handles VAT math reliably once it's built, and full accounting software applies VAT automatically across an entire ledger of invoices — but both come with more overhead than a single price check needs. Opening a spreadsheet to answer "what's 20% VAT on $85" is slower than typing two numbers into a purpose-built calculator, and accounting software is generally locked to a business's own invoicing workflow rather than available for a quick one-off number someone else quoted verbally. A standalone VAT calculator sits in the middle: faster than either heavier tool for a single calculation, and correct in both the add and remove directions without requiring a formula to be remembered or rebuilt each time.
How Your Numbers Are Handled
Every amount and rate entered into the calculator is processed directly in your browser using JavaScript — nothing is sent to a server, logged, or stored anywhere. Refreshing or closing the tab clears the entire calculation instantly, and there's no sign-in or account required to use any part of it, which matters given that the figures involved are often real invoice amounts or client pricing that a business would rather not hand to a third-party service.
Common Questions About VAT Calculations
Why does a $240 gross price with 20% VAT contain $40 of VAT, not $48?
Because the 20% rate was defined against the original net price of $200, not against the $240 gross total. Taking 20% of the gross figure directly measures 20% of a number that already has tax baked into it, which overstates the true VAT amount — dividing the gross by 1.20 first recovers the correct net figure of $200, and the difference between that and $240 is the accurate $40 VAT.
What VAT rate should I use if I don't know the exact one for my country or product category?
This calculator doesn't look up rates automatically, since VAT schedules vary by country and by category within a country, and change over time through legislation. The rate to enter is whichever one applies to the specific transaction — checking a current invoice, a supplier's quote, or an official tax authority reference for the relevant jurisdiction is the reliable source for that number.
Is VAT the same thing as sales tax?
No — they're structured differently even though both add a percentage-based charge to a purchase. VAT is generally built into the displayed price at every stage and is common outside the United States, while sales tax in the U.S. is typically added on top of a listed price only at the point of sale and varies by state, county, and city rather than being set nationally. The Sales Tax Calculator handles that add-on-top calculation specifically.
Can I use this to work out VAT for an invoice in a different currency?
The VAT math itself works the same regardless of currency — enter the amount in whatever currency the invoice is in, and the calculator returns the VAT breakdown in that same currency. Converting between currencies first is a separate step handled by a currency converter rather than something this tool does on its own.
Does adding multiple VAT rates to one order work the same as adding one rate to the whole total?
Not if different line items carry different VAT rates — a reduced-rate item and a standard-rate item on the same order each need their VAT calculated against their own net price individually, then summed, rather than applying one blended rate to the order total. This tool calculates one amount at one rate per use, so a mixed-rate order needs one calculation per rate before adding the results together.
Why would a net price and a VAT-exclusive price be the same thing?
They are the same thing, just described two ways — "net" and "VAT-exclusive" both refer to the price before VAT is added, as opposed to the "gross" or "VAT-inclusive" price that a customer actually pays at checkout. This calculator's Add VAT mode starts from that net/VAT-exclusive figure.
Does it matter whether a business is VAT-registered when deciding which figure to focus on?
It does, in terms of which number is actually relevant to that business's own budget. A VAT-registered business can typically reclaim the VAT it pays on its own purchases, so the net figure is closer to its real cost after that reclaim happens. A business or individual that isn't VAT-registered pays the gross, VAT-inclusive price with no way to recover any part of it, which makes the gross figure the one that actually affects their spending. The calculator returns both figures every time; which one matters most depends on who's asking.
Related Tools
For tax that works on the opposite principle — added on top of a listed price rather than built into it — the Sales Tax Calculator covers U.S.-style sales tax specifically. Businesses pricing goods also often need to work out profit on top of cost, which the Margin Calculator handles independently of any tax calculation. Sellers paying a percentage to a marketplace or sales agent on each transaction can check that separately with the Commission Calculator. For invoices or purchases in a foreign currency, the Currency Converter converts the total before or after VAT is applied, whichever order the situation calls for.
Ad space
Related tools
Loan Calculator
Calculate loan values with interactive charts and detailed breakdowns....
Compound Interest Calculator
Calculate compound interest values with interactive charts and detailed breakdowns....
Salary Converter
Calculate salary converter values with interactive charts and detailed breakdowns....
Ad space