Linking two same fields in Access

R

RAV

I want to link two Yes/No check boxes from two different subforms, eg if I
select Checkbox in one subform and take tick out, it will automatically
remove tick from other checkbox which is in a different subform. The fields
for the checkbox are in different tables
 
G

Geof Wyght

RAV,

Try:
Forms("ParentForm2").SubForm2.Form.Controls
("chkBox2").Value=Me.SubForm1.Form.Controls(chkBox1").Value
Good luck.
Geof Wyght
 
Top