modified date

M

Monty

Can i set up a sheet within a workbook that will give the date and the
username of every person who modifies the spreadsheet.

THANKS

MONTY
 
P

Peter Jausovec

Hi Monty,

You can use this code and put it in Workbook before close or Workbook before
save event:
ActiveSheet.Range("A1").Value = "Modified by: " & Environ("USERNAME") & ", "
& Date

Hope this helps.
 

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

Top