![]() |
|
#1
|
||||
|
||||
![]() Quote:
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
#2
|
|||
|
|||
![]() Quote:
Unfortunately after downloading and playing with it I've noticed that it outputs individual word documents from the merge, and not a single document with all the records, which is what I need. The good news is, after looking around for what can be done with VBA, I've come up with a solution that works for my purpose, and I'll share it just in case it can help with anyone else: Since merged documents have individual sections, with their independent headers and footers, I know I can populate the reference number in the header of each bid. The next problem is I didn't know how to reference the content controls per section, but turns out it's easily done, by using Section.Range.ContentControls. So the solution is: - Put the reference number merge field inside the header of your pre-merged word template. - Use the following VBA code: Code:
For Each Sec In ActiveDocument.Sections For Each CCtl In Sec.Range.ContentControls If CCtl.Title = "ref_no" Then CCtl.Range.Text = Sec.Headers(wdHeaderFooterPrimary).Range.Text End If Next Next The limitation is probably obvious, but this approach basically means you can't have anything else within your header. Although at the same time you can probably do something clever like using a delimiter to truncate unwanted header content, whilst putting an invisible (white on white, font size 1) merge field into the header as the very first thing. Hope it's helpful to anyone else! |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
stevejohhnym | Mail Merge | 1 | 06-25-2019 12:50 AM |
![]() |
sylvio | Word VBA | 9 | 08-30-2017 01:46 AM |
Macro to save docx to doc that checks compatibility and converts content controls to static content. | staicumihai | Word VBA | 4 | 10-12-2016 08:23 PM |
![]() |
jeffreybrown | Word | 2 | 05-09-2016 05:53 PM |
Mail Merge Field Not Populating | JennEx | Mail Merge | 3 | 05-10-2015 09:30 PM |