Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 1
Default Is it possible to print the document properties in Excel?

I have an excel workbook that is on a sharepoint site with custom document
properties. Can I print these properties when I print the workbook?
  #2   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 22,906
Default Is it possible to print the document properties in Excel?

To get a list of all Custom Properties run the following macro.

Sub customprops()
rw = 1
Worksheets.Add
For Each p In ActiveWorkbook.CustomDocumentProperties
Cells(rw, 1).Value = p.Name
Cells(rw, 3).Value = p.Value
rw = rw + 1
Next
End Sub


Gord Dibben MS Excel MVP

On Thu, 26 Feb 2009 06:07:01 -0800, pcastillo
wrote:

I have an excel workbook that is on a sharepoint site with custom document
properties. Can I print these properties when I print the workbook?


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 for Office 2007 Excel Templates Zement Excel Discussion (Misc queries) 4 July 3rd 07 08:20 AM
Displaying Document Properties in Excel AlwaysFroosh! Excel Worksheet Functions 3 September 26th 06 07:30 PM
Document Properties sent to print when print with office applicati Office applications Excel Discussion (Misc queries) 1 March 31st 06 07:45 PM
How can I using Excel custom document properties in the header? ecalvo Excel Worksheet Functions 4 November 3rd 05 09:29 PM
Excel document properties insert into a cell Mark Excel Discussion (Misc queries) 3 December 16th 04 02:05 PM


All times are GMT +1. The time now is 12:46 AM.

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"