I'm creating a database for tracking workshops that are sponsored by different groups. What I'm working on is a form in which I have 2 combo boxes (Personnel & Workshop). Users are able to pick any personnel and any workshop. When they have choosen the Personnel and the Workshop I need to fill in a Fee IF that Person is NOT part of a Group that is sponsoring the choosen Workshop and do nothing if they are part of a sponsoring Group. In my scheme - Groups sponsor Workshops and Personnel are part of Groups.
Basically my pseudocode is:
IF NOT(Personnel in SponsoringGroup) THEN
Fee = 175
END IF
My problem is the IN part above. Since SponsoringGroup is not necessarily a single group (groups can sponsor workshops together) that will end up being a list of all the SponsoringGroups. How do I find out if my Personnel is part of any ONE of those groups?
I would really appreciate any help or guidance offered.
THANKS!
Michelle
Basically my pseudocode is:
IF NOT(Personnel in SponsoringGroup) THEN
Fee = 175
END IF
My problem is the IN part above. Since SponsoringGroup is not necessarily a single group (groups can sponsor workshops together) that will end up being a list of all the SponsoringGroups. How do I find out if my Personnel is part of any ONE of those groups?
I would really appreciate any help or guidance offered.
THANKS!
Michelle