Good afternoon, I have looked at:-
FAQ68-5187 How to MAIL MERGE and SAVE EACH DOCUMENT SEPARATELY
And at thread707-858311 but it’s not quite what I need for my people. Basically I want to be able to take my (Master, if you will) Mailmerge document and output it 1 record at a time to new documents that are the result of the Mailmerge rather than just a copy of that (Master) document, complete with its links and macro.
I thought about something like
But, of course, then there’d be no fields for the next record !
Even then there appears to be more fields in the document than fields.count !! ??
As for saving the file without macros……….. pffffff.
I had thought about saving the files (there are 35 records) then opening each one & trying to unlink the fields that way. But each one seems to take an age as it has to re-establish the link to the merge data for each one.
Bit stumped at the moment; any ideas, please?
Many thanks,
D€$
FAQ68-5187 How to MAIL MERGE and SAVE EACH DOCUMENT SEPARATELY
And at thread707-858311 but it’s not quite what I need for my people. Basically I want to be able to take my (Master, if you will) Mailmerge document and output it 1 record at a time to new documents that are the result of the Mailmerge rather than just a copy of that (Master) document, complete with its links and macro.
I thought about something like
Code:
For y = 1 To ActiveDocument.Fields.Count
ActiveDocument.Fields(y).Unlink
Next y
Even then there appears to be more fields in the document than fields.count !! ??
As for saving the file without macros……….. pffffff.
I had thought about saving the files (there are 35 records) then opening each one & trying to unlink the fields that way. But each one seems to take an age as it has to re-establish the link to the merge data for each one.
Bit stumped at the moment; any ideas, please?
Many thanks,
D€$