I have the following three tables in a ms access database:
VISITS
ID | CLIENT ID | DATE ADDED
MEASUREMENTS
ID | LABEL
RESULTS
ID | VISIT ID | MEASUREMENT ID | VALUE
[VISIT ID] and [MEASUREMENT ID] are foreign keys referencing VISITS and MEASUREMENTS respectively.
I need to create a form where the user can enter values into the results table based on the records stored in the
MEASUREMENTS table. So basically if the MEASUREMENTS table had the following records:
ID | LABEL
1 | Measure1
2 | Measure2
3 | Measure3
The final form should look something like:
---------------------------
Client : [select box]
Date Added : [text box]
Measure1 : [user enters result 1]
Measure2 : [user enters result 2]
Measure3 : [user enters result 3]
---------------------------
I'm not experienced with MS Access and don't really know how to create such a form.
What do you recommend? Thanks in advance.