#1   Report Post  
Wendy
 
Posts: n/a
Default Printing

is there a way to print double sided pages

  #2   Report Post  
Ron de Bruin
 
Posts: n/a
Default

Hi Wendy

This is a printer setting
But if your printer not have this option you can do it with code
http://www.rondebruin.nl/print.htm#odd

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
is there a way to print double sided pages



  #3   Report Post  
Wendy
 
Posts: n/a
Default

Hi Ron- thank you for your response to my question for double-sided printing
.. I am confused how to use the code you sent me. I am not knowledgeable in
setting up the Macros.

"Ron de Bruin" wrote:

Hi Wendy

This is a printer setting
But if your printer not have this option you can do it with code
http://www.rondebruin.nl/print.htm#odd

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
is there a way to print double sided pages




  #4   Report Post  
Ron de Bruin
 
Posts: n/a
Default

Hi Wendy

Alt-F11 to open the VBA editor
Insert module (in the menubar)
Paste this two subs

Sub Print_Odd()
Dim Totalpage As Long
Dim page As Long
Totalpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
For page = 1 To Totalpage Step 2 'Odd
ActiveSheet.PrintOut from:=page, To:=page, _
Copies:=1, Collate:=True
Next
End Sub

Sub Print_Even()
Dim Totalpage As Long
Dim page As Long
Totalpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
For page = 2 To Totalpage Step 2 'Even
ActiveSheet.PrintOut from:=page, To:=page, _
Copies:=1, Collate:=True
Next
End Sub

Alt-Q to go back to excel
Select the sheet you want to print
Alt-F8 to open the macro dialog
Select Print_Odd
Run

Put you paper back in the printer and
Alt-F8 to open the macro dialog
Print_Even()
Run

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
Hi Ron- thank you for your response to my question for double-sided printing
. I am confused how to use the code you sent me. I am not knowledgeable in
setting up the Macros.

"Ron de Bruin" wrote:

Hi Wendy

This is a printer setting
But if your printer not have this option you can do it with code
http://www.rondebruin.nl/print.htm#odd

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
is there a way to print double sided pages






  #5   Report Post  
Wendy
 
Posts: n/a
Default

Hi Ron: I am still confused- Do I open excel before I hit Alt 11 or not?
When I did I get a blank (grey) page and nothing opens - I do not see a menu
bar??? I apologize - I really want to do this project and I am frustrated.
Thanks for all your help. I am using Microsoft Windows XP, Excel 2003 and
have a HP deskjet printer

"Ron de Bruin" wrote:

Hi Wendy

Alt-F11 to open the VBA editor
Insert module (in the menubar)
Paste this two subs

Sub Print_Odd()
Dim Totalpage As Long
Dim page As Long
Totalpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
For page = 1 To Totalpage Step 2 'Odd
ActiveSheet.PrintOut from:=page, To:=page, _
Copies:=1, Collate:=True
Next
End Sub

Sub Print_Even()
Dim Totalpage As Long
Dim page As Long
Totalpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
For page = 2 To Totalpage Step 2 'Even
ActiveSheet.PrintOut from:=page, To:=page, _
Copies:=1, Collate:=True
Next
End Sub

Alt-Q to go back to excel
Select the sheet you want to print
Alt-F8 to open the macro dialog
Select Print_Odd
Run

Put you paper back in the printer and
Alt-F8 to open the macro dialog
Print_Even()
Run

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
Hi Ron- thank you for your response to my question for double-sided printing
. I am confused how to use the code you sent me. I am not knowledgeable in
setting up the Macros.

"Ron de Bruin" wrote:

Hi Wendy

This is a printer setting
But if your printer not have this option you can do it with code
http://www.rondebruin.nl/print.htm#odd

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
is there a way to print double sided pages









  #6   Report Post  
Ron de Bruin
 
Posts: n/a
Default

Hi Wendy

Yes open Excel first

see
http://www.mcgimpsey.com/excel/modules.html




--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
Hi Ron: I am still confused- Do I open excel before I hit Alt 11 or not?
When I did I get a blank (grey) page and nothing opens - I do not see a menu
bar??? I apologize - I really want to do this project and I am frustrated.
Thanks for all your help. I am using Microsoft Windows XP, Excel 2003 and
have a HP deskjet printer

"Ron de Bruin" wrote:

Hi Wendy

Alt-F11 to open the VBA editor
Insert module (in the menubar)
Paste this two subs

Sub Print_Odd()
Dim Totalpage As Long
Dim page As Long
Totalpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
For page = 1 To Totalpage Step 2 'Odd
ActiveSheet.PrintOut from:=page, To:=page, _
Copies:=1, Collate:=True
Next
End Sub

Sub Print_Even()
Dim Totalpage As Long
Dim page As Long
Totalpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
For page = 2 To Totalpage Step 2 'Even
ActiveSheet.PrintOut from:=page, To:=page, _
Copies:=1, Collate:=True
Next
End Sub

Alt-Q to go back to excel
Select the sheet you want to print
Alt-F8 to open the macro dialog
Select Print_Odd
Run

Put you paper back in the printer and
Alt-F8 to open the macro dialog
Print_Even()
Run

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
Hi Ron- thank you for your response to my question for double-sided printing
. I am confused how to use the code you sent me. I am not knowledgeable in
setting up the Macros.

"Ron de Bruin" wrote:

Hi Wendy

This is a printer setting
But if your printer not have this option you can do it with code
http://www.rondebruin.nl/print.htm#odd

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
is there a way to print double sided pages









  #7   Report Post  
Wendy
 
Posts: n/a
Default

Hello Ron- I got it! Thank you very much for having patience with me

"Ron de Bruin" wrote:

Hi Wendy

Alt-F11 to open the VBA editor
Insert module (in the menubar)
Paste this two subs

Sub Print_Odd()
Dim Totalpage As Long
Dim page As Long
Totalpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
For page = 1 To Totalpage Step 2 'Odd
ActiveSheet.PrintOut from:=page, To:=page, _
Copies:=1, Collate:=True
Next
End Sub

Sub Print_Even()
Dim Totalpage As Long
Dim page As Long
Totalpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
For page = 2 To Totalpage Step 2 'Even
ActiveSheet.PrintOut from:=page, To:=page, _
Copies:=1, Collate:=True
Next
End Sub

Alt-Q to go back to excel
Select the sheet you want to print
Alt-F8 to open the macro dialog
Select Print_Odd
Run

Put you paper back in the printer and
Alt-F8 to open the macro dialog
Print_Even()
Run

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
Hi Ron- thank you for your response to my question for double-sided printing
. I am confused how to use the code you sent me. I am not knowledgeable in
setting up the Macros.

"Ron de Bruin" wrote:

Hi Wendy

This is a printer setting
But if your printer not have this option you can do it with code
http://www.rondebruin.nl/print.htm#odd

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
is there a way to print double sided pages







  #8   Report Post  
Ron de Bruin
 
Posts: n/a
Default

Hello Ron- I got it! Thank you very much for having patience with me

You are welcome

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
Hello Ron- I got it! Thank you very much for having patience with me

"Ron de Bruin" wrote:

Hi Wendy

Alt-F11 to open the VBA editor
Insert module (in the menubar)
Paste this two subs

Sub Print_Odd()
Dim Totalpage As Long
Dim page As Long
Totalpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
For page = 1 To Totalpage Step 2 'Odd
ActiveSheet.PrintOut from:=page, To:=page, _
Copies:=1, Collate:=True
Next
End Sub

Sub Print_Even()
Dim Totalpage As Long
Dim page As Long
Totalpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
For page = 2 To Totalpage Step 2 'Even
ActiveSheet.PrintOut from:=page, To:=page, _
Copies:=1, Collate:=True
Next
End Sub

Alt-Q to go back to excel
Select the sheet you want to print
Alt-F8 to open the macro dialog
Select Print_Odd
Run

Put you paper back in the printer and
Alt-F8 to open the macro dialog
Print_Even()
Run

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
Hi Ron- thank you for your response to my question for double-sided printing
. I am confused how to use the code you sent me. I am not knowledgeable in
setting up the Macros.

"Ron de Bruin" wrote:

Hi Wendy

This is a printer setting
But if your printer not have this option you can do it with code
http://www.rondebruin.nl/print.htm#odd

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Wendy" wrote in message ...
is there a way to print double sided pages









Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Active X Checkbox moves after printing temcon Excel Discussion (Misc queries) 2 April 5th 05 04:13 PM
Printing messagebox nc Excel Discussion (Misc queries) 1 March 22nd 05 02:49 PM
Cell borders printing black instead of grey julie@mwfc Excel Discussion (Misc queries) 1 February 23rd 05 12:19 AM
problem printing to PDF mark kubicki Excel Discussion (Misc queries) 1 January 21st 05 06:19 PM
Enable Double sided printing contiuously when printing multiple s. Lee Excel Discussion (Misc queries) 1 November 27th 04 01:58 AM


All times are GMT +1. The time now is 10:46 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"