I am not sure about Excel 2000 but in Excel 2003 do the following;
On the Tools menu, click Options, and click the Security tab.
Select the Remove personal information from file properties on save check
box.
Save the document.
I am not sure about Excel 2000 but in Excel 2003 do the following;
On the Tools menu, click Options, and click the Security tab.
Select the Remove personal information from file properties on save check
box.
Save the document.
This gets rid of a few builtins and any Custom properties.
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, _
Cancel As Boolean)
With ThisWorkbook
.BuiltinDocumentProperties("Author").Value = ""
.BuiltinDocumentProperties("Company").Value = ""
.BuiltinDocumentProperties("Title").Value = ""
.BuiltinDocumentProperties("Subject").Value = ""
.BuiltinDocumentProperties("Manager").Value = ""
For Each p In .CustomDocumentProperties
p.Value = ""
Next
End With
End Sub
Which other properties would you like to remove?
Gord Dibben MS Excel MVP
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.