Hello, I have a docx (protected) when a user clicks a ckbox after tabbing out another automatically checks as well. Version two of the document I added more to the docx and made it landscape to accommodate the new column. The issue I am having is when i click on the new column ckbox and tab, the mirrored ckbox doesn't check like the other columns.
Her is what I run on exit:
Code:
Sub MyMacro()
Dim ffld As Word.FormField
Dim rw As Row
Set rw = Selection.Rows(1)
rw.Cells(4).Range.FormFields(1).CheckBox.Value = rw.Cells(1).Range.FormFields(1).CheckBox.Value
End Sub
any thoughts on how to get this to work on the other column?