Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Print all charts in a workbook (multiple worksheets) | Charts and Charting in Excel | |||
multiple page printing | New Users to Excel | |||
How do I print a one page spreadsheet multiple time, each with its own page number? | Excel Discussion (Misc queries) | |||
print 3 column range in six columns | Excel Discussion (Misc queries) | |||
Multiple Print Ranges on one Worksheet | Excel Worksheet Functions |