So here is my situation, I have a two tables
SUBSCRIPTION and ADDRESS
The Address table has ADDR_ID (PK), STREET_NUMBER, STREET_NAME
The Subscription table has SUB_ID, ADDR_ID, SUB_DATE, SUB_EXP_DATE
The address table is pre populated from the county assessors office with all available addresses. On my form, when I am creating a new subscription I have the following fields
FIRST_NAME
LAST_NAME
These fields go to Name table, no issues here
STREET_NUMBER
STREET_NAME
SUB_DATE
SUB_EXP_DATE
what I am wanting to happen is to be able to select the STREET_NUMBER and STREET_NAME from ADDRESS table into the form and have this relationship pass the ADDR_ID from the ADDRESS table to the ADDR_ID in the SUBSCRIPTION table. I know this is fairly simple but my mind is not working and I need to get this done. Any help would be greatly appreciated.