Tagging Items

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a 'select' tick box, beside all clients. What I am wishing to do is
to be able to select multiple clients and be able to create a save list from
this in order to bulk email. I think I need to create a button at the top
that I can press once I have selected specific clients I would like and then
for it to open a saved list form.... but am unsure as to the query I would
need for the button? Also I would need a uncheck all buttons, and am also
unsure as to the query i would need for this on a uncheck button....

Please help!!
Kind Regards.
 
The query would pull all the fields from the table that you will need for
your merge. To pull only the checked records, include the "select" field in
your query and in the criteria just put "true".

To uncheck, I'd build a button called "uncheck all" and have it run an
update query to change all "select" records to "false".

Rick B
 
Back
Top