View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel.programming
count count is offline
external usenet poster
 
Posts: 64
Default Print header change

Hi,
You'll see how to set up all aspects of headers by recording a macro while
you do manual manipulations with page setup. Try pasting a logo too while
you are at that. :)
hth
Paul
Użytkownik "Chip Pearson" napisał w wiadomości
...
Try something like the following before the PrintOut method:

.PageSetup.CenterHeader = "whatever you want"


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"Hmmm..." wrote in message
...
I am printing a worksheet using

With Sheets("Sheet1)
' Code that messes around with the worksheet
'
'
.PrintOut
End With

How can I change the print header before doing the .PrintOut?

Thanks.