Thread: [Solved] Check box values to text
View Single Post
 
Old 10-14-2013, 01:13 PM
wpryan wpryan is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Oct 2013
Location: Orlando, FL USA
Posts: 26
wpryan is on a distinguished road
Default

Thanks a lot, you're amazing. With some massaging I got it working. Last question... if I have the document open, and the bookmark is already populated, is it possible to clear the existing data? I tried this code, but it's not working:
Code:
If strComposite <> "" Then
ActiveDocument.Bookmarks("Course").Range.Text = strComposite
Else
ActiveDocument.Bookmarks("Course").Range.Text = ""
End If
Reply With Quote