Checkbox is selected want a string of text to be inserted into a .

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When a checkbox is selected via a form I want access to insert text into a
word doc/template and vice versa when checkbox is unselected it removes the
text from the doc/template

how do i do this? thanks
 
In the After Update event of the checkbox:

If Me.MyCheckBoxNameHere = True Then
'Insert stuff in word doc
Else
'Remove stuff from word doc
End If
 
Back
Top