Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi All,
I'm trying to programmatically print eaxh sheet in a workbook in one page!! I've trie to use the 'VPageBreaks' and 'HPageBreaks' but no luck yet. Any suggestions? Thanks in advance |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You want to print many worksheets on the same piece of paper ?
I don't think can directly. You can copy your various pieces of data to the same worksheet and then print that. Or set up linked pictures of each of data section on another sheet, then print that. Or select multiple worksheet and print in the same job, but different pieces of paper. NickHK "Lp12" wrote in message ... Hi All, I'm trying to programmatically print eaxh sheet in a workbook in one page!! I've trie to use the 'VPageBreaks' and 'HPageBreaks' but no luck yet. Any suggestions? Thanks in advance |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Maybe this
Sub tester() Dim sh As Worksheet For Each sh In ThisWorkbook.Worksheets With sh.PageSetup .Zoom = False .FitToPagesWide = 1 .FitToPagesTall = 1 .Orientation = xlPortrait End With Next sh End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "Lp12" wrote in message ... Hi All, I'm trying to programmatically print eaxh sheet in a workbook in one page!! I've trie to use the 'VPageBreaks' and 'HPageBreaks' but no luck yet. Any suggestions? Thanks in advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do you print single page multiply times with increasing page . | Excel Worksheet Functions | |||
Setting the print area in page set up to print 1 page wide by 2 pages tall | Excel Discussion (Misc queries) | |||
PRINT PAGE BREAK VIEW AS WATERMARK FIOR EACH PAGE | Setting up and Configuration of Excel | |||
Active cell counting in particular print page (one sheet having different print area) | Excel Worksheet Functions | |||
How do I print a one page spreadsheet multiple time, each with its own page number? | Excel Discussion (Misc queries) |