Workbook Properties

I

incjourn

How can I read and write from the workbook properties (author, subject
title, manager etc) using VBA?

I tried recording a macro and it ended up empty?

Phi
 
F

Frank Kabel

Hi
for reading these properties use
msgbox ActiveWorkbook.BuiltinDocumentProperties _
(prop)

for 'prop' insert for exampl 'author', 'last save time'
etc.
 
Top