That help a lot. It make it easier for me to understand. I am going to give you more info because my parent table only has one duplicate and that is PropertyId. Here is a link of my relationship table. This make it easier for me to express my situation.
Below is the info on the PK and FK
Property_tbl1 (Base Table)
PropertyId -PK Long Integer, Index: Yes (No duplicates)
County -PK Text (Lookup table to child table: County_tbl1)
Text, Index: NO
CostId: Single, Index: No
Child Tables:
Retail_tbl1
CostId -FK, Single, Index: Yes (No Duplicates)
tblEmployeeInfo
EmployeeId -PK, Index: Yes (No Duplicates), also has a Validation rule for names of Employee.
tblLoanProgram (Used to link tables, had problems w/o it)
PropertyId -Long Integer, Index: No
LoanTotId -Single, Index: No
LoanNumber -1st mortgage : Single, Index: No
LoanNumber -2nd mortgage : Single, Index: No
County_tbl1 (I have another table for this that has two columns, which one lists counties, and the other cities. In the future should replace this, so the form can have two combo boxs, one county and the other cities)
County -text, Index: Yes (No Duplicates)
Loaninfo_tbl1
LoanTotId -Single, Index: Yes (No Duplicates)
Loan_tbl1
LoanNumber -Single, Index: Yes (No Duplicates)
Loan_tbl2
LoanNumber2 -Single, Index: Yes (No Duplicates)
Thats it. If you need more info in understand my situation, let me know. One more thing, So for on my form, every single field name is on it except the table tbl_LoanProgram. This means, I have all PK-Id's on my form, which is a waste of space.
neszz