natesternberg
Registered User.
- Local time
- Yesterday, 22:37
- Joined
- Mar 3, 2011
- Messages
- 11
I'm looking for some high-level guidance here. I have two tables, tblVolunteers and tblSkills. tblVolunteers contains a lookup column listing every skill for each volunteer. I'm writing a form that has a listbox with all skills; I want the user to highlight whatever skills she's interested in, and the second listbox will contain all volunteers that have those skills.
What's the best way to do this? Do I bind some VBA to the AfterUpdate event of the skills listbox, which performs a query, and pushes the results into the second listbox? Or do I set the row source of the volunteers listbox to a query whose WHERE clause is based on the skills listbox? Or something else?
How would you approach this?
What's the best way to do this? Do I bind some VBA to the AfterUpdate event of the skills listbox, which performs a query, and pushes the results into the second listbox? Or do I set the row source of the volunteers listbox to a query whose WHERE clause is based on the skills listbox? Or something else?
How would you approach this?