R
Ruan
Hello,
Is there a way to display the User who printed the document in the Footer?
Thanks
Ruan
Is there a way to display the User who printed the document in the Footer?
Thanks
Ruan
Frank Kabel said:Hi
Put the following code in your workbook module (not in a standard
module):
Private Sub Workbook BeforePrint(Cancel As Boolean)
Dim wkSht As Worksheet
For Each wkSht In me.Worksheets
With wkSht.PageSetup
.CenterFooter = "Printed by: " & application.username
End With
Next wkSht
End Sub