A family of Microsoft relational database management systems designed for ease of use.
The most efficient method is a join, e.g.
SELECT QT1.EmpID, QT1.TTDate, QT1.Taxable,
SUM(QT2.Taxable) AS RunningTotal
FROM QryTaxes AS QT1 INNER JOIN QryTaxes AS QT2
ON QT2.EmpID = QT1.EmpID AND QT2.TTDate<=QT1.TTDate
GROUP BY QT1.EmpID, QT1.TTDate, QT1.Taxable;
This will not return an updatable result table, however. For that you will need to call the DCount function. You'll find examples of this and other queries to return balances in Balances.zip in my public databases folder at:
https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
Note that if you are using an earlier version of Access you might find that the colour of some form objects such as buttons shows incorrectly and you will need to amend the form design accordingly.
If you have difficulty opening the link copy its text (NB, not the link location) and paste it into your browser's address bar.