ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How do I show some of the file properties in a cell in a work she. (https://www.excelbanter.com/excel-worksheet-functions/8499-how-do-i-show-some-file-properties-cell-work-she.html)

Mike on the learning curve!

How do I show some of the file properties in a cell in a work she.
 
I just need to display the "author" from the file properties in a cell in the
worksheet of the same file!

Is this a function?
Thanks

Gord Dibben

Mike

User Defined Function, not built-in.

Function DocProps(prop As String)
Application.Volatile
On Error GoTo err_value
DocProps = ActiveWorkbook.BuiltinDocumentProperties _
(prop)
Exit Function
err_value:
DocProps = CVErr(xlErrValue)
End Function

In a cell enter...........

=DOCPROPS("author")
or
=DOCPROPS("last save time")

Gord Dibben Excel MVP


On Thu, 30 Dec 2004 14:37:01 -0800, Mike on the learning curve! <Mike on the
learning wrote:

I just need to display the "author" from the file properties in a cell in the
worksheet of the same file!

Is this a function?
Thanks



Bob Phillips

Function DocProps(prop As String)
application.volatile
On Error GoTo err_value
DocProps = ActiveWorkbook.BuiltinDocumentProperties _
(prop)
Exit Function
err_value:
DocProps = CVErr(xlErrValue)
End Function


and use in the worksheet with

=DOCPROPS("Author")


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Mike on the learning curve!" <Mike on the learning
wrote in message
...
I just need to display the "author" from the file properties in a cell in

the
worksheet of the same file!

Is this a function?
Thanks





All times are GMT +1. The time now is 02:47 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com