Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
lp lp is offline
external usenet poster
 
Posts: 8
Default Print multiple Area and wrap together

From page set up, I select the area I want to print (let say column A and C),
but is it possible that both selected column wrap up together and print in
only one page (similar as if I hide colum "B" in between, but I don't want ot
hide anything) ?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Print multiple Area and wrap together

You want to print only columns A and C and you want these to wrap like
newspaper columns?

You will not be able to do this in place.

Copy A and C to a new worksheet and print from there.

To wrap them you can use this macro which wraps 2 long columns into 8
shorter columns.

Sub Move_Sets()
Dim iSource As Long
Dim iTarget As Long

iSource = 1
iTarget = 1

Do
Cells(iSource, "A").Resize(50, 2).Cut _
Destination:=Cells(iTarget, "A")
Cells(iSource + 50, "A").Resize(50, 2).Cut _
Destination:=Cells(iTarget, "C")
Cells(iSource + 100, "A").Resize(50, 2).Cut _
Destination:=Cells(iTarget, "E")
Cells(iSource + 150, "A").Resize(50, 2).Cut _
Destination:=Cells(iTarget, "G")
iSource = iSource + 200
iTarget = iTarget + 51
Loop Until IsEmpty(Cells(iSource, "A").Value)

End Sub


Gord Dibben MS Excel MVP



On Wed, 17 Feb 2010 08:55:01 -0800, LP wrote:

From page set up, I select the area I want to print (let say column A and C),
but is it possible that both selected column wrap up together and print in
only one page (similar as if I hide colum "B" in between, but I don't want ot
hide anything) ?


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 PRINT AREA Raz Excel Worksheet Functions 3 January 14th 10 09:47 PM
copy print area to multiple worksheets jggsfl Excel Discussion (Misc queries) 1 January 9th 09 09:57 PM
Excel: Narrow print area to wrap to 2nd "column" on page wood nerd Excel Discussion (Misc queries) 1 May 4th 06 02:24 AM
Excel: Narrow print area to wrap to 2nd "column" on page wood nerd Excel Discussion (Misc queries) 0 May 4th 06 12:11 AM
set the print area print multiple tabs veng Excel Discussion (Misc queries) 5 February 12th 05 07:01 PM


All times are GMT +1. The time now is 12:22 PM.

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

About Us

"It's about Microsoft Excel"