This is something i have never done before in Acces sand a bit unsure on what the best approach is going to be, so would really appreciate some tips or pointers to examples.
I need to create a database that is going to store checklists and allow the user to fill in these check lists and duely store the results.
What I am thinking is i have one table set up to hold the check lists something like
tbl_check
check_id, check_checklist_name, check_catergory,Check_question
with check_id being the primary key
then having another table called tbl_results
results_chk_id , results_date,results_client, results_YN
linking the two tables by chk_id to results_chk_id.
but here is where im getting stuck, how would i go about making the user select a check list to fill in, and then show on screen all the questions relating to that check list
regards
Chance