Using Access 2000
tblTrinity
UniqueID (primary key)
LastName
FirstName
LastName2
FirstName2
HouseNbr
Street
tblUCWMembers
RecordID (primary key)
LastName
FirstName
Address
tblTrinity is the main table in the database. This table holds all of the members in the church. tblUCWMembers is a table of women who are members in the UCW.
Here are the idiosyncracies…
1. Some women, but only about 1 in 20, from tblTrinity will be in tblUCWMembers.
2. Some in tblUCWMembers will not be in tblTrinity.
3. If the woman in tblUCWMembers is in tblTrinity, she could be in tblTrinity as FirstName (if a single family unit, or the primary name in the household) or as FirstName2 (if she is the spouse of the primary name in the household)
What I am looking for is the best method by which to keep the “Address” field in tblUCWMembers in sync with the combined “HouseNbr and Street” fields in tblTrinity, so that when those 2 fields in tblTrinity change the Address field in tblUCWMembers will also reflect the change without the database user needing to manually update.
I realize that I may have to redesign tblUCWMembers to split the Address field into 2 separate fields of HouseNbr and Street…however my starting point is what exists now, and I am looking for the best method for keeping the 2 tables in sync.
Any suggestion would be appreciated.
Thanks.
Tom
tblTrinity
UniqueID (primary key)
LastName
FirstName
LastName2
FirstName2
HouseNbr
Street
tblUCWMembers
RecordID (primary key)
LastName
FirstName
Address
tblTrinity is the main table in the database. This table holds all of the members in the church. tblUCWMembers is a table of women who are members in the UCW.
Here are the idiosyncracies…
1. Some women, but only about 1 in 20, from tblTrinity will be in tblUCWMembers.
2. Some in tblUCWMembers will not be in tblTrinity.
3. If the woman in tblUCWMembers is in tblTrinity, she could be in tblTrinity as FirstName (if a single family unit, or the primary name in the household) or as FirstName2 (if she is the spouse of the primary name in the household)
What I am looking for is the best method by which to keep the “Address” field in tblUCWMembers in sync with the combined “HouseNbr and Street” fields in tblTrinity, so that when those 2 fields in tblTrinity change the Address field in tblUCWMembers will also reflect the change without the database user needing to manually update.
I realize that I may have to redesign tblUCWMembers to split the Address field into 2 separate fields of HouseNbr and Street…however my starting point is what exists now, and I am looking for the best method for keeping the 2 tables in sync.
Any suggestion would be appreciated.
Thanks.
Tom