RE: How do I print Excel file properties information? by MikeH
MikeH
Sat Aug 16 10:15:01 CDT 2008
Hi,
Right click the sheet tab where you want the report, view code and paste
this an run it
Sub Properties()
x = 1
Cells(x, 1).Value = "Properties"
x = x + 1
For Each p In ActiveWorkbook.BuiltinDocumentProperties
On Error Resume Next
Cells(x, 1).Value = p.Name
Cells(x, 2).Value = p.Value
x = x + 1
Next
On Error GoTo 0
End Sub
Miek
"Andy Holm" wrote:
> I would like to print Excel file properties like it is possible to do for
> Word documents to show date created, saved, etc. Is there a way to do this?
> Thanks for the help.