Yes/No Fields

  • Thread starter Thread starter Guest
  • Start date Start date
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...
 
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
 
Back
Top