Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have info in a document that is more than one page long. Is it possible to
make two columns on one page. I would like to keep all of the information on one side of one sheet of paper. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
not with any standard built in print function. but you can manipulate the data. see this site for details. http://www.mvps.org/dmcritchie/excel/snakecol.htm regards FSt1 "jwrma" wrote: I have info in a document that is more than one page long. Is it possible to make two columns on one page. I would like to keep all of the information on one side of one sheet of paper. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 Sat, 20 Jun 2009 10:13:01 -0700, jwrma wrote: I have info in a document that is more than one page long. Is it possible to make two columns on one page. I would like to keep all of the information on one side of one sheet of paper. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
making columns flow down the page | Excel Discussion (Misc queries) | |||
making only specified columns visible | Excel Discussion (Misc queries) | |||
Making list with unique columns | Excel Worksheet Functions | |||
Making a One Column Directory from Two Columns | Excel Discussion (Misc queries) | |||
Making Rows into Columns | Excel Discussion (Misc queries) |