Hi,
I have two tables that are linked. I have table 1 that consists of the membership information:
- Email (primary field)
- Last name
- First name
- phone
I have table 2 that adds records after submission of a form. This consists of visits you can do once you are a member:
- ID (primary field)
- Email (only field to be filled out in form)
- Last name
- First name
- Date
The idea is to create records of each visit and it should autocomplete the fields (last name, first name) on table 2 pulling them from table 1 based on the email (matched field). The key here is not to manually select the "link to table 1" field but it should be done automatically.
Please I would appreciate any suggestions.