Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I have 40 rows of data 52 columns wide. First row are the dates of each
Sunday of the year. Remaining rows are data. How can I print each row of data with the dates on separate pages? Would like to have each row of dates and data fit on one page. Thanks. |
#2
![]() |
|||
|
|||
![]()
One way:
Choose File/Page Setup/Sheet and enter A:A in the Columns to keep at left textbox. Insert Select each column (C:AZ) and insert a page break between each column. In article , tdj wrote: I have 40 rows of data 52 columns wide. First row are the dates of each Sunday of the year. Remaining rows are data. How can I print each row of data with the dates on separate pages? Would like to have each row of dates and data fit on one page. Thanks. |
#3
![]() |
|||
|
|||
![]()
Disregard. I completely misread the question....
In article , JE McGimpsey wrote: One way: Choose File/Page Setup/Sheet and enter A:A in the Columns to keep at left textbox. Insert Select each column (C:AZ) and insert a page break between each column. In article , tdj wrote: I have 40 rows of data 52 columns wide. First row are the dates of each Sunday of the year. Remaining rows are data. How can I print each row of data with the dates on separate pages? Would like to have each row of dates and data fit on one page. Thanks. |
#4
![]() |
|||
|
|||
![]()
I think...
Option Explicit Sub testme01() Dim iRow As Long With ActiveSheet With .PageSetup .Orientation = xlLandscape '.Orientation = xlPortrait .Zoom = False .FitToPagesWide = 1 .FitToPagesTall = False End With For iRow = 1 To 4 '40 when you're done testing! .Cells(iRow, "A").Resize(1, 52).PrintOut preview:=True Next iRow End With End Sub And remove preview:=true when you're ready to kill those trees! tdj wrote: I have 40 rows of data 52 columns wide. First row are the dates of each Sunday of the year. Remaining rows are data. How can I print each row of data with the dates on separate pages? Would like to have each row of dates and data fit on one page. Thanks. -- Dave Peterson |
#5
![]() |
|||
|
|||
![]()
Thnaks Dave. Will try as soon as time permits. Will post again when I can.
Thanks "Dave Peterson" wrote: I think... Option Explicit Sub testme01() Dim iRow As Long With ActiveSheet With .PageSetup .Orientation = xlLandscape '.Orientation = xlPortrait .Zoom = False .FitToPagesWide = 1 .FitToPagesTall = False End With For iRow = 1 To 4 '40 when you're done testing! .Cells(iRow, "A").Resize(1, 52).PrintOut preview:=True Next iRow End With End Sub And remove preview:=true when you're ready to kill those trees! tdj wrote: I have 40 rows of data 52 columns wide. First row are the dates of each Sunday of the year. Remaining rows are data. How can I print each row of data with the dates on separate pages? Would like to have each row of dates and data fit on one page. Thanks. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Drop-down selection fills data across multiple columns | Excel Discussion (Misc queries) | |||
splitting text to multiple columns | Excel Discussion (Misc queries) | |||
Page breaks don't show on screen and don't print separately. It i. | Excel Discussion (Misc queries) | |||
how to print a row on the bottom of every page | Excel Discussion (Misc queries) | |||
Enable Double sided printing contiuously when printing multiple s. | Excel Discussion (Misc queries) |