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 can i print one long column side by side?

I have one long column of data and its going to print on many pages. However
I want to print it on one page, side by side. How do I do this?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default How can i print one long column side by side?

I copy|paste into MSWord and then use format|columns to make it look pretty.

chiller20 wrote:

I have one long column of data and its going to print on many pages. However
I want to print it on one page, side by side. How do I do this?


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default How can i print one long column side by side?

Public Sub SplitToCols()
Dim NumCols As Integer
Dim i As Integer
Dim colsize As Long
On Error GoTo fileerror

NumCols = InputBox("Choose Final Number of Columns")
colsize = Int((ActiveSheet.UsedRange.Rows.Count + _
(NumCols - 1)) / NumCols)
For i = 2 To NumCols
Cells((i - 1) * colsize + 1, 1).Resize(colsize, 1).Copy Cells(1, i)
Next i
Range(Cells(colsize + 1, 1), Cells(Rows.Count, 1)).Clear
fileerror:
End Sub


Gord Dibben MS Excel MVP

On Wed, 20 Aug 2008 21:21:01 -0700, chiller20
wrote:

I have one long column of data and its going to print on many pages. However
I want to print it on one page, side by side. How do I do this?


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
Can you set dual axis side by side column charts? Shane Daniel Charts and Charting in Excel 2 August 25th 06 08:05 PM
print 2 worksheets on the same page side-by side wil4d Excel Discussion (Misc queries) 1 December 18th 05 03:05 PM
How do I print 2 worksheets on the same page side-by side wil4d Excel Discussion (Misc queries) 1 December 18th 05 02:59 PM
How to print 2 Excel pages side by side on 1 printed page? Kathy Install Excel Discussion (Misc queries) 1 September 29th 05 05:03 PM
How do I make a stacked column chart with side-by-side comparison. Tim Charts and Charting in Excel 3 June 9th 05 03:38 AM


All times are GMT +1. The time now is 09:53 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"