I am trying to make a flexible checklist (of things which have to be done to discharge a patient from hospital).
My preferred interface is a multi-select listbox - the user selects items which have been done and then clicks a button to confirm. I'm open to other suggestions.
My intention is to use a junction table to store the 'done' items matched to a given patient discharge.
I currently have 32 checklist items stored as rows in a table and I really want to avoid a 32 field table - especially as the list could get changed! Also, as rows I can track each checklist item's date, time and who checked it off.
Please can someone tell me how to turn multi-select listbox items into rows? I have searched around but I can only find examples for making selections into queries. (I found some likely examples on here but my locked-down company PC refuses to open older Access version files!).
Thanks in advance.
TableChecklist
ID (pk)
ChecklistItem
TableDischarge
ID (pk)
Date
PatientName (etc)
TableJunction
ID (pk)
TableDischargeID
TableChecklistID
DateStamp
TimeStamp
UserStamp
Smin.
My preferred interface is a multi-select listbox - the user selects items which have been done and then clicks a button to confirm. I'm open to other suggestions.
My intention is to use a junction table to store the 'done' items matched to a given patient discharge.
I currently have 32 checklist items stored as rows in a table and I really want to avoid a 32 field table - especially as the list could get changed! Also, as rows I can track each checklist item's date, time and who checked it off.
Please can someone tell me how to turn multi-select listbox items into rows? I have searched around but I can only find examples for making selections into queries. (I found some likely examples on here but my locked-down company PC refuses to open older Access version files!).
Thanks in advance.
TableChecklist
ID (pk)
ChecklistItem
TableDischarge
ID (pk)
Date
PatientName (etc)
TableJunction
ID (pk)
TableDischargeID
TableChecklistID
DateStamp
TimeStamp
UserStamp
Smin.