Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 189
Default printing multiple selected rows

how can I print multiple selected rows in a page?!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15
Default printing multiple selected rows

Hi,
Select the rows you want to print.
1. FILE
2. PRINT
3. under print what --- SELECTION
4. OK

"peyman" wrote:

how can I print multiple selected rows in a page?!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default printing multiple selected rows

Hi

Not possible manual

You can use a macro
http://www.rondebruin.nl/print.htm#non-contiguous

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
how can I print multiple selected rows in a page?!

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default printing multiple selected rows

Hide the ones you don't want to print.


Gord Dibben MS Excel MVP

On Fri, 10 Aug 2007 11:44:03 -0700, peyman
wrote:

how can I print multiple selected rows in a page?!


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 189
Default printing multiple selected rows

thank you so much Ron.It works!!!

"Ron de Bruin" wrote:

Hi

Not possible manual

You can use a macro
http://www.rondebruin.nl/print.htm#non-contiguous

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
how can I print multiple selected rows in a page?!




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 663
Default printing multiple selected rows

Hi,

The following section describes other alternative -Creating View, Printing
Custom View and Deleting Custom view.

A. Create a custom view

1. Change the settings that you want to save in the view.
2. On the View menu, click Custom Views.
3. Select multiple rows, or selective rows by pressing the Ctrl Key.
3. Click Add.
4. In the Name box, type a name for the view.

Make sure to include the active sheet name in the name of a view to make it
easier to identify. When you display a view, Microsoft Excel switches to the
sheet that was active when you created the view. Excel lists all views in the
workbook in the Custom Views dialog box.

5. Under Include in view, select the options you want.
Note You cannot create a custom view when a worksheet contains an Excel
list. If one or more worksheets contain an Excel list, the Custom Views
command is disabled for the entire workbook.

B. Print a custom view

1. On the View menu, click Custom Views.
2. In the Views box, click the name of the view you want to print.
3. Click Show.
4. Click Print . Under the Print what section, in the Print dialog box,
click Selection.
5. Click OK.

Note:

Microsoft Excel saves previously defined print areas (print area: One or
more ranges of cells that you designate to print when you don't want to print
the entire worksheet. If a worksheet includes a print area, only the print
area is printed.) for each sheet in the workbook with your view. If a sheet
has no defined print areas, Microsoft Excel prints the entire worksheet.

C. Delete a custom view

1. On the View menu, click Custom Views.
2. In the Views box, click the name of the view you want, and then click
Delete.


Challa Prabhu

"peyman" wrote:

how can I print multiple selected rows in a page?!

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 189
Default printing multiple selected rows

thanx Challa I'll try it out

"challa prabhu" wrote:

Hi,

The following section describes other alternative -Creating View, Printing
Custom View and Deleting Custom view.

A. Create a custom view

1. Change the settings that you want to save in the view.
2. On the View menu, click Custom Views.
3. Select multiple rows, or selective rows by pressing the Ctrl Key.
3. Click Add.
4. In the Name box, type a name for the view.

Make sure to include the active sheet name in the name of a view to make it
easier to identify. When you display a view, Microsoft Excel switches to the
sheet that was active when you created the view. Excel lists all views in the
workbook in the Custom Views dialog box.

5. Under Include in view, select the options you want.
Note You cannot create a custom view when a worksheet contains an Excel
list. If one or more worksheets contain an Excel list, the Custom Views
command is disabled for the entire workbook.

B. Print a custom view

1. On the View menu, click Custom Views.
2. In the Views box, click the name of the view you want to print.
3. Click Show.
4. Click Print . Under the Print what section, in the Print dialog box,
click Selection.
5. Click OK.

Note:

Microsoft Excel saves previously defined print areas (print area: One or
more ranges of cells that you designate to print when you don't want to print
the entire worksheet. If a worksheet includes a print area, only the print
area is printed.) for each sheet in the workbook with your view. If a sheet
has no defined print areas, Microsoft Excel prints the entire worksheet.

C. Delete a custom view

1. On the View menu, click Custom Views.
2. In the Views box, click the name of the view you want, and then click
Delete.


Challa Prabhu

"peyman" wrote:

how can I print multiple selected rows in a page?!

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 189
Default printing multiple selected rows

hi Ron,
when I use the macro, the print is made in two pages!! how can I set up the
print for one page.the columns A to H are in one page, I,J,... in the next
pages!!!

"Ron de Bruin" wrote:

Hi

Not possible manual

You can use a macro
http://www.rondebruin.nl/print.htm#non-contiguous

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
how can I print multiple selected rows in a page?!


  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default printing multiple selected rows

Hi peyman

You can add this to the code beofre the print line

With ActiveSheet.PageSetup
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = False
.Orientation = xlLandscape
End With




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
when I use the macro, the print is made in two pages!! how can I set up the
print for one page.the columns A to H are in one page, I,J,... in the next
pages!!!

"Ron de Bruin" wrote:

Hi

Not possible manual

You can use a macro
http://www.rondebruin.nl/print.htm#non-contiguous

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
how can I print multiple selected rows in a page?!


  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 189
Default printing multiple selected rows

hi Ron,
I tried it one time before line "newsh.PrintOut" and one time before
"newsh.Columns.AutoFit".but it didn't work! I still have the problem.By the
way, this module creates new worksheets in share workbooks!!

"Ron de Bruin" wrote:

Hi peyman

You can add this to the code beofre the print line

With ActiveSheet.PageSetup
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = False
.Orientation = xlLandscape
End With




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
when I use the macro, the print is made in two pages!! how can I set up the
print for one page.the columns A to H are in one page, I,J,... in the next
pages!!!

"Ron de Bruin" wrote:

Hi

Not possible manual

You can use a macro
http://www.rondebruin.nl/print.htm#non-contiguous

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
how can I print multiple selected rows in a page?!




  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default printing multiple selected rows

Hi peyman

There are a lot of things that are not working with shared workbooks
Is it working in a normal workbook for you ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
I tried it one time before line "newsh.PrintOut" and one time before
"newsh.Columns.AutoFit".but it didn't work! I still have the problem.By the
way, this module creates new worksheets in share workbooks!!

"Ron de Bruin" wrote:

Hi peyman

You can add this to the code beofre the print line

With ActiveSheet.PageSetup
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = False
.Orientation = xlLandscape
End With




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
when I use the macro, the print is made in two pages!! how can I set up the
print for one page.the columns A to H are in one page, I,J,... in the next
pages!!!

"Ron de Bruin" wrote:

Hi

Not possible manual

You can use a macro
http://www.rondebruin.nl/print.htm#non-contiguous

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
how can I print multiple selected rows in a page?!


  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 189
Default printing multiple selected rows

hi Ron,
It's not working.It's still printing in 2 pages! I've already added the
additional code but it didn't work.
thanks for your help

"Ron de Bruin" wrote:

Hi peyman

There are a lot of things that are not working with shared workbooks
Is it working in a normal workbook for you ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
I tried it one time before line "newsh.PrintOut" and one time before
"newsh.Columns.AutoFit".but it didn't work! I still have the problem.By the
way, this module creates new worksheets in share workbooks!!

"Ron de Bruin" wrote:

Hi peyman

You can add this to the code beofre the print line

With ActiveSheet.PageSetup
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = False
.Orientation = xlLandscape
End With




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
when I use the macro, the print is made in two pages!! how can I set up the
print for one page.the columns A to H are in one page, I,J,... in the next
pages!!!

"Ron de Bruin" wrote:

Hi

Not possible manual

You can use a macro
http://www.rondebruin.nl/print.htm#non-contiguous

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
how can I print multiple selected rows in a page?!



  #13   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default printing multiple selected rows

Working for me

Send me your test workbook private and I test it for you


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
It's not working.It's still printing in 2 pages! I've already added the
additional code but it didn't work.
thanks for your help

"Ron de Bruin" wrote:

Hi peyman

There are a lot of things that are not working with shared workbooks
Is it working in a normal workbook for you ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
I tried it one time before line "newsh.PrintOut" and one time before
"newsh.Columns.AutoFit".but it didn't work! I still have the problem.By the
way, this module creates new worksheets in share workbooks!!

"Ron de Bruin" wrote:

Hi peyman

You can add this to the code beofre the print line

With ActiveSheet.PageSetup
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = False
.Orientation = xlLandscape
End With




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
when I use the macro, the print is made in two pages!! how can I set up the
print for one page.the columns A to H are in one page, I,J,... in the next
pages!!!

"Ron de Bruin" wrote:

Hi

Not possible manual

You can use a macro
http://www.rondebruin.nl/print.htm#non-contiguous

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
how can I print multiple selected rows in a page?!



  #14   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 189
Default printing multiple selected rows

i sent it to your email address.the last column is printed out in the second
page!!
thanx

"Ron de Bruin" wrote:

Working for me

Send me your test workbook private and I test it for you


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
It's not working.It's still printing in 2 pages! I've already added the
additional code but it didn't work.
thanks for your help

"Ron de Bruin" wrote:

Hi peyman

There are a lot of things that are not working with shared workbooks
Is it working in a normal workbook for you ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
I tried it one time before line "newsh.PrintOut" and one time before
"newsh.Columns.AutoFit".but it didn't work! I still have the problem.By the
way, this module creates new worksheets in share workbooks!!

"Ron de Bruin" wrote:

Hi peyman

You can add this to the code beofre the print line

With ActiveSheet.PageSetup
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = False
.Orientation = xlLandscape
End With




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
hi Ron,
when I use the macro, the print is made in two pages!! how can I set up the
print for one page.the columns A to H are in one page, I,J,... in the next
pages!!!

"Ron de Bruin" wrote:

Hi

Not possible manual

You can use a macro
http://www.rondebruin.nl/print.htm#non-contiguous

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"peyman" wrote in message ...
how can I print multiple selected rows in a page?!




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
Multiple pages after printing selected area Lynn Excel Discussion (Misc queries) 1 April 17th 06 04:28 PM
Help printing selected rows kcowan Excel Discussion (Misc queries) 4 January 2nd 06 11:52 PM
Printing selected rows maacmaac Excel Discussion (Misc queries) 1 December 8th 05 05:15 PM
how can I deselect one of the multiple selected rows? jopieb123 Excel Discussion (Misc queries) 3 December 1st 05 03:50 PM
printing only selected rows in a sheet Wizard Excel Discussion (Misc queries) 0 May 11th 05 06:46 PM


All times are GMT +1. The time now is 09:01 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"