Tables use normal paragraph style for alignment.
Open a document.
Change the normal paragraph style FOR THAT DOCUMENT to centred
Use the label wizard
Print your labels

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>> Is there any way to change the default for label printing to
>> centered from left aligned so I don't have to keep manually changing
>> this item every time I want to print a label?
>
> Your answer would apply for a document, not for labels that are
> selected from the envelope/label option. Any other suggestions?
Graham Mayor - 22 Sep 2006 07:43 GMT
The following macro will intercept the Word label wizard and apply the
centred formatting. If you want to use this only occasionally you should
change the macro name and adde it to a toolbar button.
Sub ToolsEnvelopesAndLabels()
With ActiveDocument.Styles("Normal").ParagraphFormat
.Alignment = wdAlignParagraphCenter
End With
With ActiveDocument.Styles("Normal")
.AutomaticallyUpdate = False
End With
Dialogs(wdDialogToolsEnvelopesAndLabels).Show
End Sub
http://www.gmayor.com/installing_macro.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Tables use normal paragraph style for alignment.
> Open a document.
[quoted text clipped - 8 lines]
>> Your answer would apply for a document, not for labels that are
>> selected from the envelope/label option. Any other suggestions?
Michael52 - 22 Sep 2006 16:20 GMT
> The following macro will intercept the Word label wizard and apply the
> centred formatting. If you want to use this only occasionally you should
[quoted text clipped - 26 lines]
>
> Excellent - Thank You!