Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I get a printer that will print on both sides of the paper
automatically to do so from two worksheets in the workbook. If I have two pages on the same worksheet it works fine or if I print to a printer that requires the paper to be changed manually it works fine. But it the printer handles the paper automatically it gives me two sheets with the back side blank. Thanks -- SC from Lubbock, Texas |
#2
![]() |
|||
|
|||
![]()
Hi SC from Lubbock, Texas,
To print on both sides of the paper from two worksheets in the same workbook, you need to follow these steps:
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Select both sheets at the same time then hit print.
That might work? "SC in Texas" wrote: How do I get a printer that will print on both sides of the paper automatically to do so from two worksheets in the workbook. If I have two pages on the same worksheet it works fine or if I print to a printer that requires the paper to be changed manually it works fine. But it the printer handles the paper automatically it gives me two sheets with the back side blank. Thanks -- SC from Lubbock, Texas |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I get a printer that will print on both sides of the paper
automatically to do so from two worksheets in the workbook. If I have two pages on the same worksheet it works fine or if I print to a printer that requires the paper to be changed manually it works fine. But it the printer handles the paper automatically it gives me two sheets with the back side blank. This problem annoys me too. Excel seems to treat sheets as separate documents. The following works for me, but it's awkward. Print each worksheet using the "Microsoft Office Document Image Writer." This produces an ".mdi" file for each worksheet. With both files open, it's possible to copy pages from one into the other, merging the two into one mdi file. Then the merged file can be printed. For somebody doing this a lot, it might be helpful to use third-party software like: http://www.fineprint.com/products/fineprint/index.html |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am hoping that there is a way to do the print commands in code on a command
button that will make excel not treet the sheets as separate documents but treat them as one in the print command. With a printer that has to manually be reloaded for the second page it works great but for the automatic ones it treats each sheet as separate documents and not the workbook as a single document print job. Thanks for the reply. It is good to know I am not the only one trying to deal with this. I am trying to set this up as a template for others to use and the multiple steps in your solution would work great for me but not for them. Thanks, Steve -- SC from Lubbock, Texas "MyVeryOwnSelf" wrote: How do I get a printer that will print on both sides of the paper automatically to do so from two worksheets in the workbook. If I have two pages on the same worksheet it works fine or if I print to a printer that requires the paper to be changed manually it works fine. But it the printer handles the paper automatically it gives me two sheets with the back side blank. This problem annoys me too. Excel seems to treat sheets as separate documents. The following works for me, but it's awkward. Print each worksheet using the "Microsoft Office Document Image Writer." This produces an ".mdi" file for each worksheet. With both files open, it's possible to copy pages from one into the other, merging the two into one mdi file. Then the merged file can be printed. For somebody doing this a lot, it might be helpful to use third-party software like: http://www.fineprint.com/products/fineprint/index.html |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you select more that one sheet simultaneously, the multiple sheets will be
printed as one job. Code like that below will accomplish the task: Sheets(Array("Sheet1, "Sheet2")).Printout Best of luck. Tom "SC in Texas" wrote: I am hoping that there is a way to do the print commands in code on a command button that will make excel not treet the sheets as separate documents but treat them as one in the print command. With a printer that has to manually be reloaded for the second page it works great but for the automatic ones it treats each sheet as separate documents and not the workbook as a single document print job. Thanks for the reply. It is good to know I am not the only one trying to deal with this. I am trying to set this up as a template for others to use and the multiple steps in your solution would work great for me but not for them. Thanks, Steve -- SC from Lubbock, Texas "MyVeryOwnSelf" wrote: How do I get a printer that will print on both sides of the paper automatically to do so from two worksheets in the workbook. If I have two pages on the same worksheet it works fine or if I print to a printer that requires the paper to be changed manually it works fine. But it the printer handles the paper automatically it gives me two sheets with the back side blank. This problem annoys me too. Excel seems to treat sheets as separate documents. The following works for me, but it's awkward. Print each worksheet using the "Microsoft Office Document Image Writer." This produces an ".mdi" file for each worksheet. With both files open, it's possible to copy pages from one into the other, merging the two into one mdi file. Then the merged file can be printed. For somebody doing this a lot, it might be helpful to use third-party software like: http://www.fineprint.com/products/fineprint/index.html |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Tom,
They will be printed simultaneously but Excel treats each Sheet as a separate print job when the printer is printing front and back if the printer does it automatically. If the printer is a manual flip for front and back there is no problem. When it is one that automatically flips the pages, or at least our HP's and our Xerox Document Centre do this, the page flips then comes out without anything printed on the back side, then prints the next workbook sheet the sameway. If the workbook sheet has more than one page of print, it will print front and back until it finishes that workbook sheet and then starts over with the next workbook sheet. I have worked around the problem by recreating my two page form on a single workbook sheet. Would have been simpler if the printers would not see each workbook sheet as a separate job even though they are all in the same print command. Thanks, Steve -- SC from Lubbock, Texas "TomPl" wrote: If you select more that one sheet simultaneously, the multiple sheets will be printed as one job. Code like that below will accomplish the task: Sheets(Array("Sheet1, "Sheet2")).Printout Best of luck. Tom "SC in Texas" wrote: I am hoping that there is a way to do the print commands in code on a command button that will make excel not treet the sheets as separate documents but treat them as one in the print command. With a printer that has to manually be reloaded for the second page it works great but for the automatic ones it treats each sheet as separate documents and not the workbook as a single document print job. Thanks for the reply. It is good to know I am not the only one trying to deal with this. I am trying to set this up as a template for others to use and the multiple steps in your solution would work great for me but not for them. Thanks, Steve -- SC from Lubbock, Texas "MyVeryOwnSelf" wrote: How do I get a printer that will print on both sides of the paper automatically to do so from two worksheets in the workbook. If I have two pages on the same worksheet it works fine or if I print to a printer that requires the paper to be changed manually it works fine. But it the printer handles the paper automatically it gives me two sheets with the back side blank. This problem annoys me too. Excel seems to treat sheets as separate documents. The following works for me, but it's awkward. Print each worksheet using the "Microsoft Office Document Image Writer." This produces an ".mdi" file for each worksheet. With both files open, it's possible to copy pages from one into the other, merging the two into one mdi file. Then the merged file can be printed. For somebody doing this a lot, it might be helpful to use third-party software like: http://www.fineprint.com/products/fineprint/index.html |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I just tested it printing to an HP printer.
Sheet1 is selected. Holding the Ctrl or Shift key I selected Sheet2. Now both Sheet1 and Sheet2 are selected. Hit the print button and sheet1 is printed to side A and Sheet2 is printed to side B. Note: Both sheets must have the printer options set to double sided printing. Maybe this time. Tom "SC in Texas" wrote: Tom, They will be printed simultaneously but Excel treats each Sheet as a separate print job when the printer is printing front and back if the printer does it automatically. If the printer is a manual flip for front and back there is no problem. When it is one that automatically flips the pages, or at least our HP's and our Xerox Document Centre do this, the page flips then comes out without anything printed on the back side, then prints the next workbook sheet the sameway. If the workbook sheet has more than one page of print, it will print front and back until it finishes that workbook sheet and then starts over with the next workbook sheet. I have worked around the problem by recreating my two page form on a single workbook sheet. Would have been simpler if the printers would not see each workbook sheet as a separate job even though they are all in the same print command. Thanks, Steve -- SC from Lubbock, Texas "TomPl" wrote: If you select more that one sheet simultaneously, the multiple sheets will be printed as one job. Code like that below will accomplish the task: Sheets(Array("Sheet1, "Sheet2")).Printout Best of luck. Tom "SC in Texas" wrote: I am hoping that there is a way to do the print commands in code on a command button that will make excel not treet the sheets as separate documents but treat them as one in the print command. With a printer that has to manually be reloaded for the second page it works great but for the automatic ones it treats each sheet as separate documents and not the workbook as a single document print job. Thanks for the reply. It is good to know I am not the only one trying to deal with this. I am trying to set this up as a template for others to use and the multiple steps in your solution would work great for me but not for them. Thanks, Steve -- SC from Lubbock, Texas "MyVeryOwnSelf" wrote: How do I get a printer that will print on both sides of the paper automatically to do so from two worksheets in the workbook. If I have two pages on the same worksheet it works fine or if I print to a printer that requires the paper to be changed manually it works fine. But it the printer handles the paper automatically it gives me two sheets with the back side blank. This problem annoys me too. Excel seems to treat sheets as separate documents. The following works for me, but it's awkward. Print each worksheet using the "Microsoft Office Document Image Writer." This produces an ".mdi" file for each worksheet. With both files open, it's possible to copy pages from one into the other, merging the two into one mdi file. Then the merged file can be printed. For somebody doing this a lot, it might be helpful to use third-party software like: http://www.fineprint.com/products/fineprint/index.html |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I also was looking for a solution to this and TomPl is correct, follow his
directions and it should work. Thanks! "TomPl" wrote: I just tested it printing to an HP printer. Sheet1 is selected. Holding the Ctrl or Shift key I selected Sheet2. Now both Sheet1 and Sheet2 are selected. Hit the print button and sheet1 is printed to side A and Sheet2 is printed to side B. Note: Both sheets must have the printer options set to double sided printing. Maybe this time. Tom "SC in Texas" wrote: Tom, They will be printed simultaneously but Excel treats each Sheet as a separate print job when the printer is printing front and back if the printer does it automatically. If the printer is a manual flip for front and back there is no problem. When it is one that automatically flips the pages, or at least our HP's and our Xerox Document Centre do this, the page flips then comes out without anything printed on the back side, then prints the next workbook sheet the sameway. If the workbook sheet has more than one page of print, it will print front and back until it finishes that workbook sheet and then starts over with the next workbook sheet. I have worked around the problem by recreating my two page form on a single workbook sheet. Would have been simpler if the printers would not see each workbook sheet as a separate job even though they are all in the same print command. Thanks, Steve -- SC from Lubbock, Texas "TomPl" wrote: If you select more that one sheet simultaneously, the multiple sheets will be printed as one job. Code like that below will accomplish the task: Sheets(Array("Sheet1, "Sheet2")).Printout Best of luck. Tom "SC in Texas" wrote: I am hoping that there is a way to do the print commands in code on a command button that will make excel not treet the sheets as separate documents but treat them as one in the print command. With a printer that has to manually be reloaded for the second page it works great but for the automatic ones it treats each sheet as separate documents and not the workbook as a single document print job. Thanks for the reply. It is good to know I am not the only one trying to deal with this. I am trying to set this up as a template for others to use and the multiple steps in your solution would work great for me but not for them. Thanks, Steve -- SC from Lubbock, Texas "MyVeryOwnSelf" wrote: How do I get a printer that will print on both sides of the paper automatically to do so from two worksheets in the workbook. If I have two pages on the same worksheet it works fine or if I print to a printer that requires the paper to be changed manually it works fine. But it the printer handles the paper automatically it gives me two sheets with the back side blank. This problem annoys me too. Excel seems to treat sheets as separate documents. The following works for me, but it's awkward. Print each worksheet using the "Microsoft Office Document Image Writer." This produces an ".mdi" file for each worksheet. With both files open, it's possible to copy pages from one into the other, merging the two into one mdi file. Then the merged file can be printed. For somebody doing this a lot, it might be helpful to use third-party software like: http://www.fineprint.com/products/fineprint/index.html |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Tom,
Thanks for helping on this. My second sheet was at a different orientation and I had tried just about every combination I could think of between my computer and the printer to try and get the two sheets on one double-sided page. The trick was enabling two-sided printing on both sheets separately. Just brilliant. TomP wrote: I just tested it printing to an HP printer.Sheet1 is selected. 19-Aug-08 I just tested it printing to an HP printer. Sheet1 is selected. Holding the Ctrl or Shift key I selected Sheet2. Now both Sheet1 and Sheet2 are selected. Hit the print button and sheet1 is printed to side A and Sheet2 is printed to side B. Note: Both sheets must have the printer options set to double sided printing. Maybe this time. Tom "SC in Texas" wrote: Previous Posts In This Thread: On Friday, August 15, 2008 6:03 PM SCinTexa wrote: Print on both sides of paper from two worksheets How do I get a printer that will print on both sides of the paper automatically to do so from two worksheets in the workbook. If I have two pages on the same worksheet it works fine or if I print to a printer that requires the paper to be changed manually it works fine. But it the printer handles the paper automatically it gives me two sheets with the back side blank. Thanks -- SC from Lubbock, Texas On Friday, August 15, 2008 6:32 PM TomP wrote: Select both sheets at the same time then hit print.That might work? Select both sheets at the same time then hit print. That might work? "SC in Texas" wrote: On Sunday, August 17, 2008 3:32 PM MyVeryOwnSelf wrote: This problem annoys me too. Excel seems to treat sheets as separate documents. This problem annoys me too. Excel seems to treat sheets as separate documents. The following works for me, but it's awkward. Print each worksheet using the "Microsoft Office Document Image Writer." This produces an ".mdi" file for each worksheet. With both files open, it's possible to copy pages from one into the other, merging the two into one mdi file. Then the merged file can be printed. For somebody doing this a lot, it might be helpful to use third-party software like: http://www.fineprint.com/products/fineprint/index.html On Monday, August 18, 2008 12:34 PM SCinTexa wrote: I am hoping that there is a way to do the print commands in code on a command I am hoping that there is a way to do the print commands in code on a command button that will make excel not treet the sheets as separate documents but treat them as one in the print command. With a printer that has to manually be reloaded for the second page it works great but for the automatic ones it treats each sheet as separate documents and not the workbook as a single document print job. Thanks for the reply. It is good to know I am not the only one trying to deal with this. I am trying to set this up as a template for others to use and the multiple steps in your solution would work great for me but not for them. Thanks, Steve -- SC from Lubbock, Texas "MyVeryOwnSelf" wrote: On Tuesday, August 19, 2008 10:58 AM TomP wrote: If you select more that one sheet simultaneously, the multiple sheets will be If you select more that one sheet simultaneously, the multiple sheets will be printed as one job. Code like that below will accomplish the task: Sheets(Array("Sheet1, "Sheet2")).Printout Best of luck. Tom "SC in Texas" wrote: On Tuesday, August 19, 2008 4:13 PM SCinTexa wrote: Tom,They will be printed simultaneously but Excel treats each Sheet as a Tom, They will be printed simultaneously but Excel treats each Sheet as a separate print job when the printer is printing front and back if the printer does it automatically. If the printer is a manual flip for front and back there is no problem. When it is one that automatically flips the pages, or at least our HP's and our Xerox Document Centre do this, the page flips then comes out without anything printed on the back side, then prints the next workbook sheet the sameway. If the workbook sheet has more than one page of print, it will print front and back until it finishes that workbook sheet and then starts over with the next workbook sheet. I have worked around the problem by recreating my two page form on a single workbook sheet. Would have been simpler if the printers would not see each workbook sheet as a separate job even though they are all in the same print command. Thanks, Steve -- SC from Lubbock, Texas "TomPl" wrote: On Tuesday, August 19, 2008 5:04 PM TomP wrote: I just tested it printing to an HP printer.Sheet1 is selected. I just tested it printing to an HP printer. Sheet1 is selected. Holding the Ctrl or Shift key I selected Sheet2. Now both Sheet1 and Sheet2 are selected. Hit the print button and sheet1 is printed to side A and Sheet2 is printed to side B. Note: Both sheets must have the printer options set to double sided printing. Maybe this time. Tom "SC in Texas" wrote: On Friday, September 05, 2008 9:41 AM basi wrote: I also was looking for a solution to this and TomPl is correct, follow his I also was looking for a solution to this and TomPl is correct, follow his directions and it should work. Thanks! "TomPl" wrote: Submitted via EggHeadCafe - Software Developer Portal of Choice Creating a WPF Custom Control http://www.eggheadcafe.com/tutorials...ustom-con.aspx |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
I am trying to print index cards with exell both sides | Excel Discussion (Misc queries) | |||
how to print a complete workbook with multiple tabs on both sides | Excel Worksheet Functions | |||
Print a range on multiple worksheets on one sheet of paper? | Excel Worksheet Functions | |||
How can I print current row in same place on paper but not print surrounding cells??? | New Users to Excel | |||
i want to print using both sides of A4 sheet | Excel Discussion (Misc queries) |