Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 10-31-2020, 09:21 PM
gmayor's Avatar
gmayor gmayor is offline Mail Merge - copying image to all labels Windows 10 Mail Merge - copying image to all labels Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,138
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

It seems that all the labels would be the same? That being the case you can simply duplicate the first label on the rest and print as many copies as you need. A macro can simplify that e.g.
Code:
Sub DuplicateLabels()
Dim oTable As Table
Dim oField As Field
    With ActiveDocument
        .MailMerge.MainDocumentType = _
        wdMailingLabels
        WordBasic.MailMergePropagateLabel
        For Each oTable In .Tables
            For Each oField In .Fields
                If oField.Type = wdFieldNext Then
                    oField.Delete
                End If
            Next oField
        Next oTable
        .MailMerge.MainDocumentType = _
        wdNotAMergeDocument
    End With
lbl_Exit:
    Exit Sub
End Sub
__________________
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
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Mail Merge - copying image to all labels Tricky Mail Merge Labels fairchance Mail Merge 2 11-18-2015 06:17 AM
Mail Merge - copying image to all labels Help with a mail merge onto labels dhause211 Mail Merge 1 07-14-2014 09:36 PM
Mail Merge - copying image to all labels Duplicate Labels During Mail Merge melannewis Mail Merge 2 07-25-2012 07:56 AM
Mail Merge - Labels borislibman Mail Merge 0 12-13-2009 07:24 PM
Labels Mail Merge borislibman Outlook 0 12-13-2009 07:23 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 07:38 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