Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
ocpsduke
 
Posts: n/a
Default How to print multiple columns on same page

I have a catalog of files which is about 8 pages long. It is only 3 columns
wide, however. I wanted to print as much as I could on 1 page by having it
print the first 3 columns, then return to the top of that page and print the
3 columns again on the right side of the page, before moving to the next
page. How do I set it up so that it would print something like this -
column 1-3 <space column 1-3 on the same page?
Thanks for the help
  #2   Report Post  
Ron de Bruin
 
Posts: n/a
Default

Hi ocpsduke

See this page
http://www.mvps.org/dmcritchie/excel/snakecol.htm


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


"ocpsduke" wrote in message ...
I have a catalog of files which is about 8 pages long. It is only 3 columns
wide, however. I wanted to print as much as I could on 1 page by having it
print the first 3 columns, then return to the top of that page and print the
3 columns again on the right side of the page, before moving to the next
page. How do I set it up so that it would print something like this -
column 1-3 <space column 1-3 on the same page?
Thanks for the help



  #3   Report Post  
Gord Dibben
 
Posts: n/a
Default

This macro will snake 3 columns into 6 columns with a blank row inserted every
50 rows.

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

iSource = 1
iTarget = 1

Do
Cells(iSource, "A").Resize(50, 3).Cut _
Destination:=Cells(iTarget, "A")
Cells(iSource + 50, "A").Resize(50, 3).Cut _
Destination:=Cells(iTarget, "D")
iSource = iSource + 100
iTarget = iTarget + 51
Loop Until IsEmpty(Cells(iSource, "A"))

End Sub


Gord Dibben Excel MVP


On Sat, 8 Oct 2005 06:29:01 -0700, "ocpsduke"
wrote:

I have a catalog of files which is about 8 pages long. It is only 3 columns
wide, however. I wanted to print as much as I could on 1 page by having it
print the first 3 columns, then return to the top of that page and print the
3 columns again on the right side of the page, before moving to the next
page. How do I set it up so that it would print something like this -
column 1-3 <space column 1-3 on the same page?
Thanks for the help


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
Print all charts in a workbook (multiple worksheets) aewsaws Charts and Charting in Excel 4 May 12th 23 03:45 AM
multiple page printing Scudo New Users to Excel 6 August 21st 05 06:49 PM
How do I print a one page spreadsheet multiple time, each with its own page number? lhsallwasser Excel Discussion (Misc queries) 4 August 17th 05 03:00 PM
print 3 column range in six columns dawgpilot Excel Discussion (Misc queries) 3 April 28th 05 10:53 PM
Multiple Print Ranges on one Worksheet Willis Excel Worksheet Functions 2 December 16th 04 10:33 AM


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