Open by

  • Thread starter Thread starter pgarcia
  • Start date Start date
P

pgarcia

Is there a way to show who opened the file in the header section or just show
who open the file?
 
Put this macro in the workbook code area:

Private Sub Workbook_BeforePrint(Cancel As Boolean)
ActiveSheet.PageSetup.CenterHeader = Environ("username")
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

Back
Top