I have two tables in my Access database. The first is a table (tbl1) imported daily from a large database. I want the ability to lookup records from it, choose the applicable record and populate fields into a new record in the second table (tbl2).
Specifically, let's say I need to manage a "Special Request" process that has various data entry points per record and several reports to print. This process is initiated when a person calls in with a special request. I need to create a new "special request" record in tbl2 which leads to my question:
Given the person's last name and last four of SSN what is the best way to filter records from tbl1 (from fields tbl1.LName & tbl1.SSN), select the correct record from the list and copy several fields from the record in tbl1 to a new record in tbl2 to ensure data integrity.
Thanks!
Specifically, let's say I need to manage a "Special Request" process that has various data entry points per record and several reports to print. This process is initiated when a person calls in with a special request. I need to create a new "special request" record in tbl2 which leads to my question:
Given the person's last name and last four of SSN what is the best way to filter records from tbl1 (from fields tbl1.LName & tbl1.SSN), select the correct record from the list and copy several fields from the record in tbl1 to a new record in tbl2 to ensure data integrity.
Thanks!