WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Repeating records when making a label mail merge

 
   Home -> Office -> MailMerge Fields RSS
Next:  Changing "from" address in e-mail merge  
Author Message
newgrangevista

External


Since: Aug 26, 2008
Posts: 3



(Msg. 1) Posted: Tue Aug 26, 2008 3:21 pm
Post subject: Repeating records when making a label mail merge
Archived from groups: microsoft>public>word>mailmerge>fields (more info?)

Hi!

I'm under pressure with a task at the moment and I need to get this done as
and from yesterday.

I'm doing a Label mail merge on Avery L7651 labels
I have a database file with over 1,000 records in excel (name address etc.)
I need to print the Name & Address on the Labels for each record 15 times
after each other

i.e. from the database they appeare John Smith, Joe Smith, Bob Smith --> I
want each name and the rest of the record (address) to appear 12 times after
the first record, and then move on to the next record =====> John Smith, John
Smith, John Smith.......x12..... Joe Smith, Joe Smith.....x12 and so
on..........

Is this label mail merge possible in word?? Excel or any other MS Office
program
Back to top
Login to vote
newgrangevista

External


Since: Aug 26, 2008
Posts: 3



(Msg. 2) Posted: Tue Aug 26, 2008 3:25 pm
Post subject: RE: Repeating records when making a label mail merge [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I would really appreciate any help anyone may be able to shed on this
problem!!!


Thanks a billion!! Smile



"newgrangevista" wrote:

> Hi!
>
> I'm under pressure with a task at the moment and I need to get this done as
> and from yesterday.
>
> I'm doing a Label mail merge on Avery L7651 labels
> I have a database file with over 1,000 records in excel (name address etc.)
> I need to print the Name & Address on the Labels for each record 15 times
> after each other
>
> i.e. from the database they appeare John Smith, Joe Smith, Bob Smith --> I
> want each name and the rest of the record (address) to appear 12 times after
> the first record, and then move on to the next record =====> John Smith, John
> Smith, John Smith.......x12..... Joe Smith, Joe Smith.....x12 and so
> on..........
>
> Is this label mail merge possible in word?? Excel or any other MS Office
> program
Back to top
Login to vote
Doug Robbins - Word MVP

External


Since: Jul 14, 2006
Posts: 4208



(Msg. 3) Posted: Wed Aug 27, 2008 3:07 am
Post subject: Re: Repeating records when making a label mail merge [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

As there are 65 labels on an Avery L7654 sheet, the number of labels that
you produce for each recipient is going to have to be 16 for 3/4 of the
records and 17 for the other 1/4

To do this, remove the <<NEXT RECORD>> field from the second through the
sixteenth label in the mail merge main document, and then from the 18th
through the 33rd and again from the 35th through the 50th and from the 52
throught the end of the sheet.

You must count the labels across and then down. That is, the 18th label
will be the third label in the fourth row.

--
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

"newgrangevista" <newgrangevista.DeleteThis@discussions.microsoft.com> wrote in message
news:5A2EBE45-0787-4255-9190-4C2C54F1BAAB@microsoft.com...
> Hi!
>
> I'm under pressure with a task at the moment and I need to get this done
> as
> and from yesterday.
>
> I'm doing a Label mail merge on Avery L7651 labels
> I have a database file with over 1,000 records in excel (name address
> etc.)
> I need to print the Name & Address on the Labels for each record 15 times
> after each other
>
> i.e. from the database they appeare John Smith, Joe Smith, Bob Smith --> I
> want each name and the rest of the record (address) to appear 12 times
> after
> the first record, and then move on to the next record =====> John Smith,
> John
> Smith, John Smith.......x12..... Joe Smith, Joe Smith.....x12 and so
> on..........
>
> Is this label mail merge possible in word?? Excel or any other MS Office
> program
Back to top
Login to vote
Graham Mayor

External


Since: Jul 04, 2006
Posts: 8119



(Msg. 4) Posted: Wed Aug 27, 2008 10:09 am
Post subject: Re: Repeating records when making a label mail merge [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

While Doug's suggested method is the simpler and wastes only a few labels,
it should be possible to create a datasource with the correct number of
repeated records. The process is admittedly more complex.

First create a one row table with a column for each field you will need in
your label merge.

Merge your original data source into the table with the document type set as
Directory/Catalog to a new document. This will produce a table with one row
for each record.

Run the following macro on the merged doument.
http://www.gmayor.com/installing_macro.htm

Sub DuplicateRecords()
Dim sLabels As Long
Dim i As Variant
Dim x As Variant
sLabels = InputBox("How many labels for each record", "Labels", 15)
ActiveDocument.Tables(1).Rows(1).Select
For i = 1 To ActiveDocument.Tables(1).Rows.Count
With Selection
.SelectRow
.Copy
For x = 1 To sLabels - 1
.Paste
Next x
.MoveDown unit:=wdLine
End With
Next i
End Sub

This will create the appropriate number of records for a conventional label
merge. Add a new row to thew top of the table and apply fieldnames to match
the data (the table should ens up looking like that in
http://www.gmayor.com/convert_labels_into_mail_merge.htm )

Save the document and use this document as a data source for your label
merge.


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>



Doug Robbins - Word MVP wrote:
> As there are 65 labels on an Avery L7654 sheet, the number of labels
> that you produce for each recipient is going to have to be 16 for 3/4
> of the records and 17 for the other 1/4
>
> To do this, remove the <<NEXT RECORD>> field from the second through
> the sixteenth label in the mail merge main document, and then from
> the 18th through the 33rd and again from the 35th through the 50th
> and from the 52 throught the end of the sheet.
>
> You must count the labels across and then down. That is, the 18th
> label will be the third label in the fourth row.
>
>
> "newgrangevista" <newgrangevista RemoveThis @discussions.microsoft.com> wrote in
> message news:5A2EBE45-0787-4255-9190-4C2C54F1BAAB@microsoft.com...
>> Hi!
>>
>> I'm under pressure with a task at the moment and I need to get this
>> done as
>> and from yesterday.
>>
>> I'm doing a Label mail merge on Avery L7651 labels
>> I have a database file with over 1,000 records in excel (name address
>> etc.)
>> I need to print the Name & Address on the Labels for each record 15
>> times after each other
>>
>> i.e. from the database they appeare John Smith, Joe Smith, Bob Smith
>> --> I want each name and the rest of the record (address) to appear
>> 12 times after
>> the first record, and then move on to the next record =====> John
>> Smith, John
>> Smith, John Smith.......x12..... Joe Smith, Joe Smith.....x12 and so
>> on..........
>>
>> Is this label mail merge possible in word?? Excel or any other MS
>> Office program
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> MailMerge Fields All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET