Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 07-30-2019, 04:22 AM
gmayor's Avatar
gmayor gmayor is offline Populating multiple Content Controls after mail merge Windows 10 Populating multiple Content Controls after mail merge Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,142
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

Quote:
I can't mail merge the reference number into the content control directly, so the most obvious solution is out.
Not necessarily. My old friend Greg Maxey has an interesting custom mail merge application at Enhanced Merge (Merge Many to One) which employs content controls rather than merge fields and will work with Excel and Access data sources.
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote
  #2  
Old 07-30-2019, 07:45 AM
guiltyvictim guiltyvictim is offline Populating multiple Content Controls after mail merge Windows 7 64bit Populating multiple Content Controls after mail merge Office 2010
Novice
Populating multiple Content Controls after mail merge
 
Join Date: Jul 2019
Posts: 2
guiltyvictim is on a distinguished road
Default

Quote:
Originally Posted by gmayor View Post
Not necessarily. My old friend Greg Maxey has an interesting custom mail merge application at Enhanced Merge (Merge Many to One) which employs content controls rather than merge fields and will work with Excel and Access data sources.
Thank you for the suggestion! It's a pretty amazing feat that someone's built that in macros!!

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 code basically loops through each section, then loops through each content control within that section, checking whether they're the content control we're look for. Then it just puts whatever's in the header into the content control.

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!
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Populating multiple Content Controls after mail merge Populating Tables with data when available only - Using Mail merge stevejohhnym Mail Merge 1 06-25-2019 12:50 AM
Populating multiple Content Controls after mail merge Delete or merge Content controls with the same name 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
Populating multiple Content Controls after mail merge Inserting multiple content controls for a date jeffreybrown Word 2 05-09-2016 05:53 PM
Mail Merge Field Not Populating JennEx Mail Merge 3 05-10-2015 09:30 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 05:13 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft