Different Header on First page in Excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to not have the Header show up on the 1st page of an Excel Spreadsheet?

Would like the answer to this from Excel 2000 and 2003 formats.

Thanks!
 
Try this from Ron de Bruin posted earlier this spring:

Suppress Header on 1st Page
Sub Test()
Dim TotPages As Long
TotPages = Application.ExecuteExcel4Macro("GET.DOCUMENT
(50)")
With ActiveSheet.PageSetup
.RightHeader = "Your Header info"
ActiveSheet.PrintOut From:=1, To:=1
.RightHeader = "Your Header info"
ActiveSheet.PrintOut From:=2, To:=TotPages
End With
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top