I want to use a set of check boxes to narrow down entries on a subform. I.e.
a check box for black, red & green to describe the colors of a product. So a
use clicks Black and only black products are shown, the click green and only
black and green products are shown. There will be a large number of choices
that a user can make so I'm wondering...
can I right a bit of code or function and put in a seperate module to call
from an after update event of an option group? I"m not real familiar with
using modules or code outside of an objects events.
What I'm thinking is a user clicks the check box for "Black" and the
afterupdate would call function filterResults which could contain code that
would run the list of options, If Black = true then show black products,
else don't show them; if Red = true then...
Does this make sense/ seem like it would be the best way to do it?
a check box for black, red & green to describe the colors of a product. So a
use clicks Black and only black products are shown, the click green and only
black and green products are shown. There will be a large number of choices
that a user can make so I'm wondering...
can I right a bit of code or function and put in a seperate module to call
from an after update event of an option group? I"m not real familiar with
using modules or code outside of an objects events.
What I'm thinking is a user clicks the check box for "Black" and the
afterupdate would call function filterResults which could contain code that
would run the list of options, If Black = true then show black products,
else don't show them; if Red = true then...
Does this make sense/ seem like it would be the best way to do it?
Comment