Pages

  • Thread starter Thread starter Dominic Robinson
  • Start date Start date
D

Dominic Robinson

Is there any property of the worksheet or workbook object
that will tell me the number of pages that will be
printed?
 
Try this

Sub test()
Totpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
MsgBox Totpage
End Sub
 
Back
Top