HI,
Thank for the reply. I worked out my problem.
When I used this
Code:
Fname = ThisDocument.Bookmarks("FirstName").Range.Text' not working
Fname = ThisDocument.Bookmarks("FirstName").Range.Word(1)'' should have used this
My problem now is if I use this for Date of Birth:
Code:
DOB = ThisDocument.Bookmarks("DateOfBirth").Range.Word(1)
It will bring back a "4" being it's the first character in the Date of Birth.
Am trying to figure this out.