Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a very long thin spreadsheet - 4 columns by 2000 plus rows
I would like to print on as few sheets as possible Can the system somehow print say rows 1 to 50 on the left of a page then 51 to 100 in the middle and 101 to 150 on the right thus saving two thirds of the paper needed? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
http://www.mvps.org/dmcritchie/excel/snakecol.htm
-- Kind regards, Niek Otten Microsoft MVP - Excel "Duncan Dee" <Duncan wrote in message ... I have a very long thin spreadsheet - 4 columns by 2000 plus rows I would like to print on as few sheets as possible Can the system somehow print say rows 1 to 50 on the left of a page then 51 to 100 in the middle and 101 to 150 on the right thus saving two thirds of the paper needed? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Brilliant ! - transfer to Word and split across columns - the perfect answer
Thank you so much "Niek Otten" wrote: http://www.mvps.org/dmcritchie/excel/snakecol.htm -- Kind regards, Niek Otten Microsoft MVP - Excel "Duncan Dee" <Duncan wrote in message ... I have a very long thin spreadsheet - 4 columns by 2000 plus rows I would like to print on as few sheets as possible Can the system somehow print say rows 1 to 50 on the left of a page then 51 to 100 in the middle and 101 to 150 on the right thus saving two thirds of the paper needed? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
An easy way to do it without using Word.
Sub Move_Sets() Dim iSource As Long Dim iTarget As Long iSource = 1 iTarget = 1 Do Cells(iSource, "A").Resize(50, 4).Cut _ Destination:=Cells(iTarget, "A") Cells(iSource + 50, "A").Resize(50, 4).Cut _ Destination:=Cells(iTarget, "E") Cells(iSource + 100, "A").Resize(50, 4).Cut _ Destination:=Cells(iTarget, "I") iSource = iSource + 150 iTarget = iTarget + 51 Loop Until IsEmpty(Cells(iSource, "A").Value) End Sub Gord Dibben MS Excel MVP On Fri, 6 Feb 2009 04:32:06 -0800, Duncan Dee wrote: Brilliant ! - transfer to Word and split across columns - the perfect answer Thank you so much "Niek Otten" wrote: http://www.mvps.org/dmcritchie/excel/snakecol.htm -- Kind regards, Niek Otten Microsoft MVP - Excel "Duncan Dee" <Duncan wrote in message ... I have a very long thin spreadsheet - 4 columns by 2000 plus rows I would like to print on as few sheets as possible Can the system somehow print say rows 1 to 50 on the left of a page then 51 to 100 in the middle and 101 to 150 on the right thus saving two thirds of the paper needed? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Breaking a long column to print on one sheet | Excel Discussion (Misc queries) | |||
How can i print one long column side by side? | Excel Discussion (Misc queries) | |||
Print a long 2 page column list, on one page | Excel Discussion (Misc queries) | |||
How to get a long column of numbers to wrap and print on 1 page? | Excel Discussion (Misc queries) | |||
how do you keep fields in a column to print out for long list | Setting up and Configuration of Excel |