I ifoundgoldbug Jan 16, 2007 #1 I would like to select some items from a list with check boxes and change all of them at once is there some way to do this??
I would like to select some items from a list with check boxes and change all of them at once is there some way to do this??
F fredg Jan 17, 2007 #2 I would like to select some items from a list with check boxes and change all of them at once is there some way to do this?? Click to expand... Not much to go on here. Create an Update query: Update YourTable Set YourTable.[Somefield] = "XX" Where YourTable.[CheckBoxField] = -1 If you need more specific help you'll need to be more specific with your question.
I would like to select some items from a list with check boxes and change all of them at once is there some way to do this?? Click to expand... Not much to go on here. Create an Update query: Update YourTable Set YourTable.[Somefield] = "XX" Where YourTable.[CheckBoxField] = -1 If you need more specific help you'll need to be more specific with your question.