I don't know if this is what you are looking for, but I would suggest you
create a query that combines the two tables. You can do this by selecting
fields from both tables when designing the query through the Wizard, or
perhaps the previous method of using "union" would be better
Then create a report from the query. This way the tables are combined in
the query and the report through the query
For a balance column, use the Nz function. Create a textbox. Right click
to display the "properties", and under CONTROL SOURCE type in your equation.
I'm not sure what fields yours are, but assming you had payment amount
(credit or deposit) and total charge (debit or withdrawl)
balance=NZ([Payment_Amount])-NZ([Total charge]). Name the textbox. Then
under "running sum" click "over group" and group the
report by account and sort by date. This should give you one table with a
balance sorted by date!
To give credit where credit is due, this is very similar to a post I used by
John W. Vinson[MVP] . Topic was "performing calculations" so maybe check it
out if you don't understand mine/it doesn't work.
Does this help?
Tarnia