File Properties

K

Kai Drechsler

Hello NG,

I´m looking for a method to display the file properties (for example: last
saved by; developed by) in a cell.

Has somebody an idea?

Thanks in advance.
 
D

Dude

try to put this in your "ThisWorkbook module" :

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
Cells(1, 1).Value = Me.Author
Cells(2, 1).Value = Me.UserStatus(1, 1)
Cells(3, 1).Value = Me.UserStatus(1, 2)
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

Top