ok, so i've had a look at your db.
you need to read up on normalisation.
your tables aren't actually "completely unrelated": if you look, they all have IDENTICAL field names, only different table titles - this should have given you a clue that they are in fact somewhat similar. you could make all your separate tables into ONE table (tblPolicies), with some supporting tables (like tblBroker, tblScreenType).
based on your current table(s) i suggest the following:
tblPolicies
------------
PolicyID (Autonumber, PK)
ListDate (Date, Short Date)
ClientID (Number, FK) ?most policies i'd guess have some sort of client, no?
BrokerID (Number, FK)
ScreenTypeID (Number, FK)
Total (Number)
Completed (Number)
CDRFRdate (Date)
Notes (Text)
(note: i don't know if these are going to be 100% appropriate for you - i've never worked in insurance adn have no idea what CDR is, but it looked like something you repeated a lot, so perhaps it could be out on it's own - if there are a couple of things you'd frequently put into your old notes field, then perhaps they can be in their own table like broker and screen type below)
tblClient
-------------
ClientID (Autonumber, PK)
ClientName (Text)
ClientPhone (Text)
.
.
.etc.. clienty stuff.
tblBrokers
-------------
BrokerID (Autonumber, PK)
Broker (Text)
tblScreenType
--------------
ScreenTypeID (Autonumber, PK)
ScreenType (Text)
once your tables are in order, then your totals will be a breeze to do, and also can be done in just ONE report - and this report can be filtered per sreen type if you need to display the totals for just one.
here are a couple of threads that explain in more detail what i mean by the above. and also to get you started.
http://www.access-programmers.co.uk/forums/showthread.php?t=171031 (post #13)
http://www.access-programmers.co.uk/forums/showthread.php?t=171171 (may help you further from the first post)
one very special thing you need to do in your db is create forms for data entry.
tables are for data STORAGE, forms for data ENTRY and DISPLAY, and reports for DISPLAY and PRINT. stick to that kindof order and you'll be right as rain troughout your project
