Mail Merge from Excel to Word Labels

antthorne

Board Regular
Joined
Feb 18, 2010
Messages
151
Hi

Wonder if anyone can help, I find some help on youtube on how to get this working. It appears to work but I don't think it stops at the end of my data as in when i = "". Can anyone help??

The code is below

Code:
Sub LabelMerge()Dim oword As Word.Application, odoc As Word.Document
Dim sPath As String, i As Integer, oHeaders As Range
Set oHeaders = Range("a1").CurrentRegion.Rows(1)
sPath = ThisWorkbook.FullName
Set oword = CreateObject("Word.Application")
Set odoc = oword.Documents.Add
oword.Visible = True
odoc.Activate
odoc.MailMerge.MainDocumentType = wdMailingLabels
oword.Dialogs(wdDialogLabelOptions).Show
With odoc.MailMerge.Fields
 For i = 1 To oHeaders.Columns.Count
    .Add oword.Selection.Range, oHeaders.Cells(1, i)
    oword.Selection.Font.Name = "ABC C39 SHORT"
    oword.Selection.Font.Size = 28
    oword.Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
    oword.Selection.TypeParagraph
    Next i
End With
odoc.MailMerge.OpenDataSource sPath
oword.WordBasic.mailmergepropagatelabel
odoc.MailMerge.ViewMailMergeFieldCodes = False
odoc.ActiveWindow.View.ShowFieldCodes = False
odoc.MailMerge.Destination = wdSendToNewDocument
odoc.MailMerge.Execute
Set odoc = Nothing
Set oword = Nothing
End Sub

Any help would be very much appreciated

Thanks

Ant
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
seems to work for me

run this

added command to show number of columns


Code:
Sub LabelMerge()


    Dim oword As Word.Application, odoc As Word.Document
    Dim sPath As String, i As Integer, oHeaders As Range
    
    Set oHeaders = Range("a1").CurrentRegion.Rows(1)
    
    sPath = ThisWorkbook.FullName
    
    Set oword = CreateObject("Word.Application")
    Set odoc = oword.Documents.Add
    
    oword.Visible = True
    odoc.Activate
    odoc.MailMerge.MainDocumentType = wdMailingLabels
    oword.Dialogs(wdDialogLabelOptions).Show
    
[COLOR=#ff0000]    MsgBox oHeaders.Columns.Count[/COLOR]
    
    With odoc.MailMerge.Fields
     For i = 1 To oHeaders.Columns.Count
        .Add oword.Selection.Range, oHeaders.Cells(1, i)
        oword.Selection.Font.Name = "ABC C39 SHORT"
        oword.Selection.Font.Size = 28
        oword.Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
        oword.Selection.TypeParagraph
        Next i
    End With
    
    odoc.MailMerge.OpenDataSource sPath
    oword.WordBasic.mailmergepropagatelabel
    odoc.MailMerge.ViewMailMergeFieldCodes = False
    odoc.ActiveWindow.View.ShowFieldCodes = False
    odoc.MailMerge.Destination = wdSendToNewDocument
    odoc.MailMerge.Execute
    
    Set odoc = Nothing
    Set oword = Nothing
End Sub
 
Upvote 0
Hi jsotola

Thanks for your reply

I should have been clearer in my question, the problem I'm facing is with the amount of rows rather than columns, I think (I could be wrong) that I need to place somewhere in the macro an end point as I seem to be getting a lot of blank data. Is their a way to set a dynamic range with regards to i??

Thanks
Ant
 
Upvote 0

Forum statistics

Threads
1,215,640
Messages
6,125,976
Members
449,276
Latest member
surendra75

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top