Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 390
Default How do I remove author from saved excel document

I have Office 2000 and want to remove author and other hidden info when I
save documents in Excel. How can I do this?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 364
Default How do I remove author from saved excel 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.

User name can be updated on General tab.

Excel 2000 should have similar options...

"Bill" wrote:

I have Office 2000 and want to remove author and other hidden info when I
save documents in Excel. How can I do this?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 390
Default How do I remove author from saved excel document

There is no security tab option in Excel 2000

"Sheeloo" wrote:

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.

User name can be updated on General tab.

Excel 2000 should have similar options...

"Bill" wrote:

I have Office 2000 and want to remove author and other hidden info when I
save documents in Excel. How can I do this?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default How do I remove author from saved excel document

Bill

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

On Tue, 7 Oct 2008 15:35:01 -0700, Bill
wrote:

I have Office 2000 and want to remove author and other hidden info when I
save documents in Excel. How can I do this?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Document Properties - Last Saved, Author Michael Excel Dude Excel Discussion (Misc queries) 1 September 3rd 06 04:30 AM
Can the author lose access to a document protected with RMS? Kris Excel Discussion (Misc queries) 0 March 28th 06 04:30 AM
Open an excel document prio to it last being saved C Dillon Excel Discussion (Misc queries) 1 March 3rd 06 01:28 PM
Why do I get an error Document not Saved in Excel? Helena Excel Discussion (Misc queries) 1 February 6th 06 03:15 PM
How do I recover Excel document printed but not saved Richard AH Excel Discussion (Misc queries) 1 July 12th 05 07:34 PM


All times are GMT +1. The time now is 12:20 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"