I was thinking Bullets might be one of the Range Objects. I did notice that if you type the asterisk "*" along with a space [in Word] you will get a bullet. You could preceed your text with the asterisk. Good luck.
This code will create a footer, but maybe you can change it to create bullets.
.ActiveDocument.StoryRanges(wdPrimaryFooterStory).Bookmarks("Footer1").Select
.Selection.Text = (CStr(Forms!OGML!User))
As to duplicate bookmarks, sadly there is no such thing. You must add additional...
after68,
I use an Access form to create a Word document and had given up on being able to merge using a subform because I was unable to name the bookmarks past the first entry. I had resolved myself to a huge single form with an embarressing number of table fields. Your code seems to make it...