Nadine, that would not be a good design.
One of the most basic rules of database design is that you do not store
dependent data. There are too many things that can go wrong if you store the
balance, e.g. when you discover you missed an entry for an earlier date, or
if you edit an entry so the dollar value changes.
If the database is going to work correctly, the balance must be calculated
in a query or report, not stored in the table.