Downloads and tidies the HMRC VAT Annual Statistics bulletin, which reports monthly VAT receipts broken down into payments, repayments, import VAT, and home VAT. Monthly data runs from April 1973; the bulletin is published annually (December).
Details
Note that early years (pre-1985) have suppressed payment and repayment splits; only the total is available for those periods. From January 2021, import VAT collected via postponed VAT accounting is recorded within payments and repayments rather than the import VAT column.
See also
Other data fetchers:
hmrc_capital_gains(),
hmrc_corporation_tax(),
hmrc_creative_industries(),
hmrc_fuel_duties(),
hmrc_income_tax_stats(),
hmrc_inheritance_tax(),
hmrc_patent_box(),
hmrc_property_transactions(),
hmrc_rd_credits(),
hmrc_stamp_duty(),
hmrc_tax_gap(),
hmrc_tax_receipts(),
hmrc_tobacco_duties()
Examples
# \donttest{
op <- options(hmrc.cache_dir = file.path(tempdir(), "hmrc"))
try({
vat <- hmrc_vat(measure = c("total", "repayments"), start = "2024-01")
head(vat)
})
#> ℹ Resolving download URL from GOV.UK Content API
#> ✔ Resolving download URL from GOV.UK Content API [114ms]
#>
#> ℹ Downloading data file
#> ✔ Downloading data file [703ms]
#>
#> ℹ Parsing data
#> ✔ Parsing data [96ms]
#>
#> # VAT annual statistics (monthly receipts)
#> # Source: https://www.gov.uk/government/statistics/value-added-tax-vat-annual-statistics
#> # Fetched 2026-09-13 19:24:28 UTC | Vintage: latest | Cells: cash | Freq: monthly | 6 rows x 4 cols
#>
#> date measure description receipts_gbp_m
#> 1 2024-01-01 repayments VAT repayments -8670
#> 2 2024-02-01 repayments VAT repayments -10000
#> 3 2024-03-01 repayments VAT repayments -8360
#> 4 2024-04-01 repayments VAT repayments -9240
#> 5 2024-05-01 repayments VAT repayments -10900
#> 6 2024-06-01 repayments VAT repayments -7890
options(op)
# }