Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.setup
|
|||
|
|||
![]()
need to print a four column index in a double column per page. How do I do
that?? for example last name first name dob last name first name dob |
#2
![]()
Posted to microsoft.public.excel.setup
|
|||
|
|||
![]()
Sub four_to_eight()
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") iSource = iSource + 100 iTarget = iTarget + 50 Loop Until IsEmpty(Cells(iSource, "A").Value) End Sub If you want a blank column between the 2 sets, change the (iTarget, "E") to "F" Gord Dibben MS Excel MVP On Fri, 11 Jan 2008 07:50:04 -0800, fraser wrote: need to print a four column index in a double column per page. How do I do that?? for example last name first name dob last name first name dob |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I print the names of my columns on each page? (Excel) | Excel Discussion (Misc queries) | |||
Format to print in columns on 1 page | Excel Discussion (Misc queries) | |||
How to print multiple columns on same page | Excel Discussion (Misc queries) | |||
How do you print selected columns on one page? | Excel Discussion (Misc queries) | |||
Repeating Rows and Columns on each page of print out | Excel Discussion (Misc queries) |