I tried to buy two point of sale systems and both had issues. Meanwhile my girls use handwritten tickets. At the end of every month, I have to enter all the sales individually in Excel. ENOUGH. I now want to write a small Access database and have my staff enter the tickets on a daily basis. Most of the time, we calculate sales tax at .0875. But there are occasions when someone is tax exempt. So, I set up a field in a table that says 'SalesTaxCollected' and made it a yes/no field. Now, I would like to say something like the following: IF sales tax was collected, then RetailPrice * Quantity * TaxRate. But if none is collected, I would like it to just reflect RetailPrice * Quantity. The info is being pulled from a Query that includes ItemID (and related: tblInventory) and tblSales and tblTax). Thank you.