Checkboxes in Access

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

Guest

How do you have a checkbox remain the same in each record in form view rather
than every record having the same box checked or unchecked??
 
How do you have a checkbox remain the same in each record in form view rather
than every record having the same box checked or unchecked??

Well, you DON'T, not in a properly normalized table!

Data is not stored in forms. It's stored in tables; and in a table,
each field should depend on that record's primary key, only - not on
which other records it's grouped with.

Perhaps this field should be in another table, on the "one" side of a
one to many relationship with this table.

John W. Vinson[MVP]
 
Backwards Man said:
How do you have a checkbox remain the same in each record in form
view rather than every record having the same box checked or
unchecked??

I'm not sure I follow you. Are you talking about an unbound or
calculated check box -- that is, one that is not bound to a specific
field in the form's recordsource?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top