ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Reformat a large column, to a grid (https://www.excelbanter.com/excel-discussion-misc-queries/162577-reformat-large-column-grid.html)

Stu

Reformat a large column, to a grid
 
Is there a simple way (i.e. without writing a macro) to take a very long
column of numbers, and arrange them as a table (or a grid) for printing?

I want to print the contents of a sheet, with one really long column of
numbers but have it appear as many columns to cut down on the massive number
of pages it would take to print the column.



Stephen[_2_]

Reformat a large column, to a grid
 
"Stu" wrote in message
...
Is there a simple way (i.e. without writing a macro) to take a very long
column of numbers, and arrange them as a table (or a grid) for printing?

I want to print the contents of a sheet, with one really long column of
numbers but have it appear as many columns to cut down on the massive
number
of pages it would take to print the column.



There isn't a simple way to do this.
Have a look here for a discussion and suggestions:
http://www.mvps.org/dmcritchie/excel/snakecol.htm



Gord Dibben

Reformat a large column, to a grid
 
If your data is an column A starting at Cell A1, then the following
formula, entered in Cell B1 and filled across 10 columns and down 50
rows will produce 10 columns of 50 rows. Any more/less than 500 original
rows, you do the math and make alterations.

=INDIRECT("A"&(ROW()+(COLUMN()-2)*50))


The 2 refers to the column of Cell B1; if you're putting the formula in
a different column, use the appropriate number for that column.

CopyPaste Special(in place) the results then delete the original column A.

VBA Macro to snake the columns top to bottom..1 to 50 down then 51 to 100 etc.


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 Excel MVP

On Thu, 18 Oct 2007 02:26:02 -0700, Stu wrote:

Is there a simple way (i.e. without writing a macro) to take a very long
column of numbers, and arrange them as a table (or a grid) for printing?

I want to print the contents of a sheet, with one really long column of
numbers but have it appear as many columns to cut down on the massive number
of pages it would take to print the column.




All times are GMT +1. The time now is 09:01 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com