Of course the problem being that if you are doing this sort of task for an
office, you are more than likey a junior administrator and usually dont get
given all the files. I am in postion of being a temp at this office and this
ahs been ahdned to me third or forth degree.... meaning the original doc - if
it was merged i am not sure - is not available. I will find a fix. thank you.
"how difficult can it be to" is most definately not helpful.
> If you mail-merged them, how difficult can it be to edit the main document
> and mail merge them again? The whole idea of mail merge is to make it
[quoted text clipped - 20 lines]
> > is one, of going about this without recreating all the labels from square
> > one.
Anne Troy - 17 Nov 2005 16:18 GMT
Sorry. I didn't mean to be unhelpful. :) I think you have the best idea yet
that doesn't require a macro that someone would have to write and by that
time, you could probably do them manually? I cannot think of a quicker
option than the one you've suggested already.
************
Anne Troy
VBA Project Manager
www.OfficeArticles.com
> Of course the problem being that if you are doing this sort of task for an
> office, you are more than likey a junior administrator and usually dont
[quoted text clipped - 35 lines]
>> > square
>> > one.
Doug Robbins - Word MVP - 17 Nov 2005 19:19 GMT
See "Convert Labels into Mail Merge Data File" on fellow MVP Graham Mayor's
website at:
http://www.gmayor.com/convert_labels_into_mail_merge.htm
Or, if it is the same line of text that has to go on all labels, you could
use a macro
Dim i As Long, j As Long
With ActiveDocument.Tables(1)
For i = 1 To .Rows.Count
For j = 1 To .Columns.Count
.Cell(i, j).Range.InsertAfter "New Text"
Next j
Next i
End With
Or, if you want to add the text before the first line of the label, use
Dim i As Long, j As Long
With ActiveDocument.Tables(1)
For i = 1 To .Rows.Count
For j = 1 To .Columns.Count
.Cell(i, j).Range.InsertBefore "New Text" & vbCr
Next j
Next i
End With

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Of course the problem being that if you are doing this sort of task for an
> office, you are more than likey a junior administrator and usually dont
[quoted text clipped - 35 lines]
>> > square
>> > one.
Anne Troy - 18 Nov 2005 06:53 GMT
Egads, Doug. I didn't even think of that for THIS one (tho I use it a lot)!
:)
************
Anne Troy
VBA Project Manager
www.OfficeArticles.com
> See "Convert Labels into Mail Merge Data File" on fellow MVP Graham
> Mayor's website at:
[quoted text clipped - 66 lines]
>>> > square
>>> > one.