Thanks in advance.
There are some methods available using VBA.
This displays the count.
Sub printcounter()
wscount = ActiveWorkbook.Worksheets.Count
For a = 1 To wscount
Sheets(a).Activate
PAGECOUNT = Application.ExecuteExcel4Macro("Get.Document(50)") + PAGECOUNT
Next a
MsgBox (PAGECOUNT & " Pages to Print")
End Sub
--
If this helps, please remember to click yes.
The sub did display the total pages, but it also moved all the text boxes in
the workbook.
Also, is it possible to return the number to a cell?
Thanks again for your help.