Check boxes

  • Thread starter Thread starter rblivewire
  • Start date Start date
R

rblivewire

I know it is simple code, but what is the code so when you check one
checkbox, a separate check box automatically checks as well.
 
Sub checkbox1_afterupdate()
me!chkbox2 = me!chkbox1

where checkbox1 is the name of the checkbox you are checking or unchecking
and checkbox2 is the name of the checkbox you want to change based on the
action on checkbox1
 
Back
Top