I have two databases.
MemberDatabase, is for entering member contributions. Only money received from members go in this database. So every contribution is attached to a member. It consists of two tables.
tblMembers, just has the member first and last name fields.
FIELDS:
MemberID/FirstName/LastName
tblOffering, just has fields for what the members contribute (Tithe, Offering, Missions, etc).
FIELDS:
OfferingID/MemberID/Date/Tithe/Offering/Missions
The two table are related by the tblMembers ID, which also looks up the names from tblMembers
Everthing works find in this database. I have various reports set up to give weekly totals and a year letter with totals.
The second database is the FinanceDatabase for general finance. The purpose of this table was to give a complete view of income and expenses. It's just one table.
FIELDS:
FinanceID/Date/Type/Item/IncAmt/ExpAmt
Type goes to a lookup table to determine if the Item is income or expense.
This table works fine for me. Right now, someone has to type in the totals from the MemberDatabase into the Finance Database.
NOW ... my question is, is there a way to combine the totals I from the MemberDatabase into the FinanceDatabase so they dont need to be retyped? Is there some way to relate the tables so that in the FinanceDatabase I can create a query that would get totals from the MemberDatabase and make a report that would show and calculate the totals from the other database and calculate them with the entries in the FinanceDatabase.
I hope I clear.
MemberDatabase, is for entering member contributions. Only money received from members go in this database. So every contribution is attached to a member. It consists of two tables.
tblMembers, just has the member first and last name fields.
FIELDS:
MemberID/FirstName/LastName
tblOffering, just has fields for what the members contribute (Tithe, Offering, Missions, etc).
FIELDS:
OfferingID/MemberID/Date/Tithe/Offering/Missions
The two table are related by the tblMembers ID, which also looks up the names from tblMembers
Everthing works find in this database. I have various reports set up to give weekly totals and a year letter with totals.
The second database is the FinanceDatabase for general finance. The purpose of this table was to give a complete view of income and expenses. It's just one table.
FIELDS:
FinanceID/Date/Type/Item/IncAmt/ExpAmt
Type goes to a lookup table to determine if the Item is income or expense.
This table works fine for me. Right now, someone has to type in the totals from the MemberDatabase into the Finance Database.
NOW ... my question is, is there a way to combine the totals I from the MemberDatabase into the FinanceDatabase so they dont need to be retyped? Is there some way to relate the tables so that in the FinanceDatabase I can create a query that would get totals from the MemberDatabase and make a report that would show and calculate the totals from the other database and calculate them with the entries in the FinanceDatabase.
I hope I clear.