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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top