Page Numbering (ie Page 1 of 3)

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

Guest

Does anyone know how to set up the above or if it's possible in Excel

I know how to show "page 1" and "page 2", but I'd like to show how many pages total are in a document.
 
Hi AZMichelle

There is a option in the Page Setup (Headers Footers)
<Page1 of ?>

I don't know if this option is in all the Excel versions??


With a macro you can do this

Sub test()
On Error Resume Next
With ActiveSheet.PageSetup
.CenterFooter = "&8Page &8&P & of &N"
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

Similar Threads


Back
Top