Inserting fields (properties) in a presentation

  • Thread starter Thread starter arielqs
  • Start date Start date
A

arielqs

Hi, I want to insert document properties (as title or file size) inside a
presentation.

I know how to do that in other programs like word or excel, but I have not
been able to do that in Power Point.

Please help me.

Thanks in advance.
 
This isn't available in PowerPoint GUI (unless you count copy & paste from
the properties!)

It's fairly easy via vba though to access the properties and add them to
slides
eg
Dim sAuthor As String
sAuthor = ActivePresentation.BuiltInDocumentProperties("Author")
--
Amazing PPT Hints, Tips and Tutorials

http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
 
Back
Top