#1   Report Post  
Posted to microsoft.public.word.mailmerge.fields
SheriR. SheriR. is offline
external usenet poster
 
Posts: 3
Default Mailmerge Print

I have a three page document that I am trying to print/staple for each of the
people in the "database". I'm assuming that Word should be able to read the
end of each 3 page document and then staple it before moving on to the next
record. However, when I try to do this, every record is printed & then all
stapled together. I don't know if this is a Word issue or a printer issue or
if it just can't be done. Does anyone know? I've asked several people in my
office with no success.
  #2   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Mailmerge Print

If you use a macro containing the following code, it will send each 3 page
document to the printer as a separate print task so that the printer will be
able to perform its finishing functions on each document:

Dim i As Long
With ActiveDocument
For i = 1 To .Sections.Count
.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
Next i
End With


--
Hope this helps

Doug Robbins - Word MVP
Please reply only to the newsgroups unless you wish to avail yourself of my
services on a paid, professional basis.

"SheriR." wrote in message
...
I have a three page document that I am trying to print/staple for each of
the
people in the "database". I'm assuming that Word should be able to read
the
end of each 3 page document and then staple it before moving on to the
next
record. However, when I try to do this, every record is printed & then
all
stapled together. I don't know if this is a Word issue or a printer issue
or
if it just can't be done. Does anyone know? I've asked several people in
my
office with no success.



  #3   Report Post  
Posted to microsoft.public.word.mailmerge.fields
SheriR. SheriR. is offline
external usenet poster
 
Posts: 3
Default Mailmerge Print

I guess I should also mention that it is Word 2003.

"SheriR." wrote:

I have a three page document that I am trying to print/staple for each of the
people in the "database". I'm assuming that Word should be able to read the
end of each 3 page document and then staple it before moving on to the next
record. However, when I try to do this, every record is printed & then all
stapled together. I don't know if this is a Word issue or a printer issue or
if it just can't be done. Does anyone know? I've asked several people in my
office with no success.

  #4   Report Post  
Posted to microsoft.public.word.mailmerge.fields
SheriR. SheriR. is offline
external usenet poster
 
Posts: 3
Default Mailmerge Print

Thanks. I will try that & hopefully I can get it to work.

"Doug Robbins - Word MVP" wrote:

If you use a macro containing the following code, it will send each 3 page
document to the printer as a separate print task so that the printer will be
able to perform its finishing functions on each document:

Dim i As Long
With ActiveDocument
For i = 1 To .Sections.Count
.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
Next i
End With


--
Hope this helps

Doug Robbins - Word MVP
Please reply only to the newsgroups unless you wish to avail yourself of my
services on a paid, professional basis.

"SheriR." wrote in message
...
I have a three page document that I am trying to print/staple for each of
the
people in the "database". I'm assuming that Word should be able to read
the
end of each 3 page document and then staple it before moving on to the
next
record. However, when I try to do this, every record is printed & then
all
stapled together. I don't know if this is a Word issue or a printer issue
or
if it just can't be done. Does anyone know? I've asked several people in
my
office with no success.




  #5   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Jeff Knoll Jeff Knoll is offline
external usenet poster
 
Posts: 1
Default Mail Merge

I am trying to do a similar merge using
MAC OS X. Will this macro work for it also? What is the Macro?and is there anything extra that needs to be done on a MAC



Doug Robbins - Word MVP wrote:

If you use a macro containing the following code, it will send each 3
13-Oct-09

If you use a macro containing the following code, it will send each 3 page
document to the printer as a separate print task so that the printer will be
able to perform its finishing functions on each

Previous Posts In This Thread:

EggHeadCafe - Software Developer Portal of Choice
Build the IE WebControls Visual Studio Solution!
http://www.eggheadcafe.com/tutorials...bcontrols.aspx


  #6   Report Post  
Posted to microsoft.public.mac.office.word,microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Mail Merge

This is the code for the macro that works with Word running under Windows:

Dim i As Long
With ActiveDocument
For i = 1 To .Sections.Count
.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
Next i
End With

I am sorry, but I have no way of checking if it will work under MAC OS X.

I have cross posted this response to the microsoft.public.mac.office.word
newsgroup where someone may be able to shed some light on that possibility.
--
Hope this helps

Doug Robbins - Word MVP
Please reply only to the newsgroups unless you wish to avail yourself of my
services on a paid, professional basis.

Jeff Knoll wrote in message ...
I am trying to do a similar merge using
MAC OS X. Will this macro work for it also? What is the Macro?and is
there anything extra that needs to be done on a MAC



Doug Robbins - Word MVP wrote:

If you use a macro containing the following code, it will send each 3
13-Oct-09

If you use a macro containing the following code, it will send each 3 page
document to the printer as a separate print task so that the printer will
be
able to perform its finishing functions on each

Previous Posts In This Thread:

EggHeadCafe - Software Developer Portal of Choice
Build the IE WebControls Visual Studio Solution!
http://www.eggheadcafe.com/tutorials...bcontrols.aspx



  #7   Report Post  
Posted to microsoft.public.mac.office.word,microsoft.public.word.mailmerge.fields
Peter Jamieson Peter Jamieson is offline
external usenet poster
 
Posts: 4,582
Default Mail Merge

It works fine with Word 2004 and Word X (for example). Word 2008 has no
VBA - an Applescript version would probably not be much harder, although
(a) "print out" has been deprecated and (b) "print out" seems to have a
slightly different set of parameter definitions from the VBA version.

Peter Jamieson

http://tips.pjmsn.me.uk
Visit Londinium at http://www.ralphwatson.tv

On 20/10/2009 06:32, Doug Robbins - Word MVP wrote:
Dim i As Long
With ActiveDocument
For i = 1 To .Sections.Count
.PrintOut Range:=wdPrintFromTo, From:="s"& i, To:="s"& i
Next i
End With

Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
print 4 up form from mailmerge? Dabbler Mailmerge 5 December 31st 07 01:41 PM
mailmerge print page set up Noel Mailmerge 1 September 28th 07 08:19 AM
Mailmerge & Print events Andrew Kennard[_2_] Mailmerge 3 May 9th 07 02:16 PM
Can't get mailmerge in Word 2000 to print Del Mailmerge 4 December 12th 06 05:38 PM
how do i get the mailmerge labels to print right? helpless Mailmerge 1 January 4th 06 12:49 PM


All times are GMT +1. The time now is 03:02 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"