View Single Post
 
Old 08-31-2014, 10:49 AM
elh52 elh52 is offline Mac OS X Office for Mac 2011
Novice
 
Join Date: Aug 2014
Posts: 3
elh52 is on a distinguished road
Question Macro to loop through all cells in a table produced by a mail merge

Hi all,

I'm very new indeed to macros so this may be a very simple question - if so, I'm sorry! I've carried out a mail merge on some data to make labels, and I now want to turn the first line of each label into a barcode. I've got a macro that will make the barcode, but instead of looping through the cells in the table it runs on the first cell over and over again. Can anyone help to diagnose what I've done wrong? The code is:

Sub BarcodeLabels()

Dim oRow As Row
Dim oCell As Cell
Dim oTbl As Table

For Each oTbl In ActiveDocument.Tables
For Each oRow In oTbl.Rows
For Each oCell In oRow.Cells

Selection.HomeKey Unit:=wdLine
Selection.TypeText Text:="*"
Selection.EndKey Unit:=wdLine
Selection.TypeText Text:="* "
Selection.Expand wdLine
Selection.Font.Name = "Free 3 of 9"
Selection.Font.Size = 14
Selection.EndKey Unit:=wdLine
Selection.MoveLeft Unit:=wdCharacter, Count:=3, Extend:=wdExtend
Selection.Font.Name = "Arial"
Selection.EndKey Unit:=wdLine
Next oCell
Next oRow
Next oTbl

End Sub


Thank you for any help you can give!
Reply With Quote