Yes/No Fields

G

Guest

I have a dozen or so Yes/No fields on the form. Many times I'm selecting yes
for many field at a time is it possible to select something else and it will
turn multiple fields to yes or even all of them?

Thanks...
 
J

Jayyde

Put in something like:

Private Sub chkMaster_Click()

Dim val As Integer

val = chkMaster.Value

chk1.Value = val
chk2.Value = val
chk3.Value = val
...

End Sub


hth
 

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

Top