Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Print a long 2 page column list, on one page

I have a 3 narrow columns with a long list that runs down over 2 pages.
I want to leave all the text in the same columns (for sorting, adding to
etc), but when I print I would like it to fit on one page. That is - to show
the same long list, but side by side on one page. Thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default Print a long 2 page column list, on one page

On May 1, 7:51 pm, Stella wrote:
I have a 3 narrow columns with a long list that runs down over 2 pages.
I want to leave all the text in the same columns (for sorting, adding to
etc), but when I print I would like it to fit on one page. That is - to show
the same long list, but side by side on one page. Thanks


What would happen if you had formulas in columns E:G that refered to
the items below page 1. and then set the Page Area to A1:G30 (or
whatever). the original info would remain in the same column that you
can continue to sort and you have the additional columns to print.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Print a long 2 page column list, on one page

May work, but then if I add or delete rows in my original list, then would
have to check formulas. Would be just as easy to do what I am doing now -
that is when ready to print I cut the bottom bit off and paste on page one.
After printing I put it back to assist with adding and deleting names in the
list. Thanks for your time.

"Stan" wrote:

On May 1, 7:51 pm, Stella wrote:
I have a 3 narrow columns with a long list that runs down over 2 pages.
I want to leave all the text in the same columns (for sorting, adding to
etc), but when I print I would like it to fit on one page. That is - to show
the same long list, but side by side on one page. Thanks


What would happen if you had formulas in columns E:G that refered to
the items below page 1. and then set the Page Area to A1:G30 (or
whatever). the original info would remain in the same column that you
can continue to sort and you have the additional columns to print.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,290
Default Print a long 2 page column list, on one page


You can paste into Word and use Format | Columns
-or -
David McRitchie has some vba code to do it...
http://www.mvps.org/dmcritchie/excel/snakecol.htm
-or -
buy a commercial application...
http://www.realezsites.com/bus/primitivesoftware
Jim Cone
San Francisco, USA


"Stella"
wrote in message
I have a 3 narrow columns with a long list that runs down over 2 pages.
I want to leave all the text in the same columns (for sorting, adding to
etc), but when I print I would like it to fit on one page. That is - to show
the same long list, but side by side on one page. Thanks
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Print a long 2 page column list, on one page

Thanks. Will try when I get time. But as you and David M detailed - no simple
way - not like simplicity of say "columns" in word and other things in word.

"Jim Cone" wrote:


You can paste into Word and use Format | Columns
-or -
David McRitchie has some vba code to do it...
http://www.mvps.org/dmcritchie/excel/snakecol.htm
-or -
buy a commercial application...
http://www.realezsites.com/bus/primitivesoftware
Jim Cone
San Francisco, USA


"Stella"
wrote in message
I have a 3 narrow columns with a long list that runs down over 2 pages.
I want to leave all the text in the same columns (for sorting, adding to
etc), but when I print I would like it to fit on one page. That is - to show
the same long list, but side by side on one page. Thanks



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Print a long 2 page column list, on one page

Stella

Public Sub Snake3to6()
Dim myRange As Range
Dim colsize As Long
Dim maxrow As Long
Const numgroup As Integer = 2
Const NUMCOLS As Integer = 6
On Error GoTo fileerror
colsize = Int((ActiveSheet.UsedRange.Rows.Count + _
((NUMCOLS - 1)) / NUMCOLS)) / numgroup
MsgBox "Number of Rows to Move is: " & colsize
Range("A1").Select
With ActiveCell.Parent.UsedRange
maxrow = .Cells(.Cells.Count).Row + 1
End With
ActiveCell.Parent.Cells(maxrow, ActiveCell.Column) _
.End(xlUp).Offset(1, 0).Select
Set myRange = Range(ActiveCell.Address & ":" _
& ActiveCell.Offset(-colsize, (numgroup)).Address)
myRange.Cut Destination:=ActiveSheet.Range("D1")
Application.CutCopyMode = False
Range("A1").Select

fileerror:
End Sub


Gord Dibben MS Excel MVP

On Tue, 1 May 2007 09:51:00 -0700, Stella
wrote:

I have a 3 narrow columns with a long list that runs down over 2 pages.
I want to leave all the text in the same columns (for sorting, adding to
etc), but when I print I would like it to fit on one page. That is - to show
the same long list, but side by side on one page. Thanks


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Print a long 2 page column list, on one page

Thanks for time, but need really simple solution - as i have to pass on to
others - who barely use Excel. Seems - no simple way - not like simplicity of
say "columns" in word and other things in word.



"Gord Dibben" wrote:

Stella

Public Sub Snake3to6()
Dim myRange As Range
Dim colsize As Long
Dim maxrow As Long
Const numgroup As Integer = 2
Const NUMCOLS As Integer = 6
On Error GoTo fileerror
colsize = Int((ActiveSheet.UsedRange.Rows.Count + _
((NUMCOLS - 1)) / NUMCOLS)) / numgroup
MsgBox "Number of Rows to Move is: " & colsize
Range("A1").Select
With ActiveCell.Parent.UsedRange
maxrow = .Cells(.Cells.Count).Row + 1
End With
ActiveCell.Parent.Cells(maxrow, ActiveCell.Column) _
.End(xlUp).Offset(1, 0).Select
Set myRange = Range(ActiveCell.Address & ":" _
& ActiveCell.Offset(-colsize, (numgroup)).Address)
myRange.Cut Destination:=ActiveSheet.Range("D1")
Application.CutCopyMode = False
Range("A1").Select

fileerror:
End Sub


Gord Dibben MS Excel MVP

On Tue, 1 May 2007 09:51:00 -0700, Stella
wrote:

I have a 3 narrow columns with a long list that runs down over 2 pages.
I want to leave all the text in the same columns (for sorting, adding to
etc), but when I print I would like it to fit on one page. That is - to show
the same long list, but side by side on one page. Thanks



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
How do I print a long vertical list in two columns in 1 page ? rosendo Excel Discussion (Misc queries) 1 May 21st 06 05:39 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
In Excel, how can I print a long list on 1 page in multiple colum. Chuck Excel Discussion (Misc queries) 3 March 23rd 05 06:46 PM
print 1 long row(20 columns) in excel to one single page Calvin Excel Worksheet Functions 1 November 10th 04 06:51 PM


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