postmanphat
Technical User
Hi,
I have a database that lists staff in an organisation and what their area of expertise is. I want to be able to query the database using checkboxes on a form. There are currently 6 areas of expertise in the tblExtpertise (eg A -F)so I have a form with 6 unbound checkboxes that each relate to an area of expertise.
If I select expertise A on the form, I want the query to return all the staff who have expertise A. If I choose A, B and C, I want the query to return those members of staff whose expertise includes A, B and C.
Table structure as follows:
tblStaff
StaffID*
Name
tblExpertise
ExID*
Expertise
tblStaffEx
ID
StaffID
ExID
I can get it to select people where the checkboxes exactly relate to a staff's expertise. i.e. if I choose A and B, it will bring back the guy who has expertise A and B, but not the guy who has A, B and C. Which unfortunately is no good.
Many many many thanks in advance
Dave
I have a database that lists staff in an organisation and what their area of expertise is. I want to be able to query the database using checkboxes on a form. There are currently 6 areas of expertise in the tblExtpertise (eg A -F)so I have a form with 6 unbound checkboxes that each relate to an area of expertise.
If I select expertise A on the form, I want the query to return all the staff who have expertise A. If I choose A, B and C, I want the query to return those members of staff whose expertise includes A, B and C.
Table structure as follows:
tblStaff
StaffID*
Name
tblExpertise
ExID*
Expertise
tblStaffEx
ID
StaffID
ExID
I can get it to select people where the checkboxes exactly relate to a staff's expertise. i.e. if I choose A and B, it will bring back the guy who has expertise A and B, but not the guy who has A, B and C. Which unfortunately is no good.
Many many many thanks in advance
Dave