Design to reconcile accounts

M

Mike

I am currently working on a project that will reconcile internal
company records for multiple locations with the bank statements. We
have txt files that are being imported to an access database for both
the internal accounts and the bank accounts. I have tables set up for
both but am not sure how to go about reconciling them. For example,
each store makes several daily deposits to the bank which may or may
not show up on the day of the deposit. I want to be able to compare
the two tables and then if the deposits match, mark them both
reconciled. Is the best way to do this to just add a reconciled yes/no
data type to each table or is there a better design?
 
T

tedmi

A cardinal rule of databases is that each piece of information be stored ONCE
AND ONCE ONLY. If you have "reconciled" information in two tables, then there
is the possibility that deposits could be marked reconciled in one but not
the other. My suggestion is to mark reconciliation only in the internal
table, not the bank table. To check for deposits that appear on the bank
statement but not on the internal table, run an Unmatched query on the bank
table.
 
G

Golfinray

I would try a query. In the query, use the following statement in a query
field by itself:
Reconciled:IIF([statementvalueone]=[statementvalue2],"yes","no")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top