Hello,
When the person filling in a form selects a "Check Box", I would like to take their selection and use it in another location of the document.
I am using the Legacy tools "Check Box" tool.
I am able to do this two different ways with a "Text Form field"
- via the "Text Form field" Bookmark and creating a cross reference to the Bookmark
- via attaching a macro to the Exit property of the "Text Form Field". (See sample macro code below.)
Sample macro code -
Sub CopyField()
Dim Temp as String
Temp = ActiveDocument.FormFields("Field1").Result
ActiveDocument.FormFields("Field2").Result = Temp
End Sub
Is there a similar functionality when using "Check Boxes".
Thank you
MJR