A family of Microsoft relational database management systems designed for ease of use.
Personally, I would do it different.
The customers table would have a yes/no field ChargeTax. It may change at some point.
The Invoices table woule have a field TaxPct, required entry.
When the invoice is created, lookup whether a customer is to be charged tax.
If yes, populate TaxPct with the current tax percent. If no, populate with zero.
Tax changes over time and if you hard code it into a formula, then change it, that changes it for ALL invoices.
Then in a query, based on the invoice, add a column for TaxAmout = InvoiceTotal * TaxPct.
You can then use the query as the recordsource for your form, as well as statements, invoice reports, etc., and don't need to duplicate the formula anywhere else.