Well this is a little complicated.
My table is called Maintenance_Fees and has the following fields (SB_ID, Member_ID,ML_Last_Name1, ML_FirstName1, Year_1994....Year_2025(numeric fields)
and what i tried to do in the form, was to connect the fields
SB_ID, Member_ID, ML_Last_Name1 and ML_FirstName1 with the fields to another table "Members_List" so it would be autofilled after i chose the SB_ID, which i did with After Update Event
Member_ID = DLookup("Member_ID", "Members_List", "SB_ID=" & SB_ID)
ML_Last_Name1 = DLookup("ML_Last_Name1", "Members_List", "SB_ID=" & SB_ID)
ML_First_Name1 = DLookup("ML_First_Name1", "Members_List", "SB_ID=" & SB_ID)
The problem is that when i choose one SB_ID member, then it just autocompletes the fields i said, but the other fields i have are always the same...
How can i connect all the fields? Or do I have to do it another way? I want when the all the fields to be updated automatically
HELP AND THANKS...