Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi the code below is an abstract from a macro I use to automatically page
numbers when printing, Sub workbook_BeforePrint(Cancel As Boolean) With Worksheets("sheet1") ..PageSetup.CenterFooter = "" & .Range("A1").Text End With With Worksheets("sheet2") ..PageSetup.CenterFooter = "" & .Range("a1").Text End With 'etc etc End Sub The macro functions as required and is placed within Thisworkbook. As the number of pages have grown to 20, the macro will only function if I press print preview before printing, otherwise the page numbering is not updated. I'm guessing the print function is quicker than the macro and it doesn't get chance to complete. Not the end of the world, but I just wondered if there was a way to get around this to allolw the macro enough time to complete before the printing starts? -- This post was created using recycled electrons! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto Page Numbering Question | Excel Discussion (Misc queries) | |||
start page numbering from page 2 in excel | Excel Discussion (Misc queries) | |||
Question with existing print macro | Excel Discussion (Misc queries) | |||
Page numbering question | Excel Discussion (Misc queries) | |||
Revised Question on Page Numbering | Excel Programming |