Link to home
Start Free TrialLog in
Avatar of bbimis
bbimis

asked on

Word user forum on infinite documents

I have a user forum made that puts the input into a pre-made document template with bookmarks.  The problem is it only does one page.  Is there a way to fire the user forum until done an make a new page accordingly? . The ultimate goal is it have a multi page document from 1 to many. Where each page I formated the same but with different input data.  Thanks.
Avatar of GrahamSkan
GrahamSkan
Flag of United Kingdom of Great Britain and Northern Ireland image

You could append a further 'page' from the template.

However the bookmark names will be the same. This means that the original bookmarks will be kept and new ones will not appear. For this reason the existing bookmarks whould be removed prior to the new block being added.    
Dim bmk As Bookmark
    
    For Each bmk In ActiveDocument.Bookmarks
        bmk.Delete
    Next bmk
    ActiveDocument.Bookmarks("\EndOfDoc").Range.InsertFile "Bookmarks.dotx"

Open in new window

please post before and after documents
Avatar of bbimis
bbimis

ASKER

Graham, so will the new bookmarks be put on the new page?
so I can call the user form again and continue inputting data on a new page?
ASKER CERTIFIED SOLUTION
Avatar of GrahamSkan
GrahamSkan
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bbimis

ASKER

thanks