Open by

P

pgarcia

Is there a way to show who opened the file in the header section or just show
who open the file?
 
G

Gary''s Student

Put this macro in the workbook code area:

Private Sub Workbook_BeforePrint(Cancel As Boolean)
ActiveSheet.PageSetup.CenterHeader = Environ("username")
End Sub
 
Top