Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How to print a very long column

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How to print a very long column

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default How to print a very long column

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
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
Breaking a long column to print on one sheet Pathwalker Excel Discussion (Misc queries) 1 August 30th 08 08:15 PM
How can i print one long column side by side? chiller20 Excel Discussion (Misc queries) 2 August 21st 08 05:50 PM
Print a long 2 page column list, on one page Stella Excel Discussion (Misc queries) 6 May 2nd 07 05:09 AM
How to get a long column of numbers to wrap and print on 1 page? Sue Excel Discussion (Misc queries) 2 September 9th 05 01:51 AM
how do you keep fields in a column to print out for long list Mike Setting up and Configuration of Excel 1 August 31st 05 09:14 PM


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