Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I insert a user's name automatically into a specific cell when they
open a worksheet, make some changes and then save it. I need to record the last person to make changes to the spreadsheet. There name needs to be automatically inserted into a specific cell of my choosing so that when someone else looks at the spreadsheet either in read-only mode or without making any changes to it they can see who last edited it. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
TP GS 180506 wrote:
How do I insert a user's name automatically into a specific cell when they open a worksheet, make some changes and then save it. I need to record the last person to make changes to the spreadsheet. There name needs to be automatically inserted into a specific cell of my choosing so that when someone else looks at the spreadsheet either in read-only mode or without making any changes to it they can see who last edited it. Have you thought of using Tools-Track changes to get all their (note not there!!!) changes listed? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I put this in a regular module. You could also use it in the workbook
module as an on open event. Sub Auto_open() [a1] = ThisWorkbook.BuiltinDocumentProperties("Author") End Sub |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
To get the last saved by name I think you would need,
[a1]= ThisWorkbook.BuiltinDocumentProperties("Last Author") Cheers Andy Zone wrote: I put this in a regular module. You could also use it in the workbook module as an on open event. Sub Auto_open() [a1] = ThisWorkbook.BuiltinDocumentProperties("Author") End Sub -- Andy Pope, Microsoft MVP - Excel http://www.andypope.info |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Returning the last modified date to a cell in excel 2003 | Excel Worksheet Functions | |||
inserting '0' into a excel cell | New Users to Excel | |||
cell format for date/time in same cell excel 2003 | Excel Worksheet Functions | |||
TRYING TO SET UP EXCEL SPREADSHEET ON MY COMPUTER | New Users to Excel | |||
GET.CELL | Excel Worksheet Functions |