If it's one field on multiple records... (usually what is considered a 'column')
ex.
Name MaritalStatus
J Smith X
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13848
R Jones
G Brown X
H Ford
then run an Update query against the table, setting all that fields checkboxes to False.
Criteria the Update query for ALL records or a specific record, as you require.
If each check field is an individual field in your table
J Jones Marital X
OwnHome X
Veteran
GED
Over 50 X
then you'll have to manually code the False against each different field.
Marital = False
OwnHome = False
Veteran = False etc....
--
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions
There are 10 types of people in the world.
Those who understand binary, and those who don't.
"mommyone"
wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13848
news:8796283F-7299-464D-B422-5D171C8BA4CE@microsoft.com...
>I have a column with boxes that can be check or unchecked individually...can
> I uncheck an entire column at once? How?
>
> Thanks