ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Can I write an excel formula to display the file save date? (https://www.excelbanter.com/excel-worksheet-functions/67636-can-i-write-excel-formula-display-file-save-date.html)

Bob-123456789

Can I write an excel formula to display the file save date?
 
In Excel 2003 I often use the following formula to display the name (and
path) of the file:
=CELL("filename",T5)

I have not figured out if there is a way to display other file information
in a cell such as the file save date (& time) or file size.

Is there a way to do this??

Gord Dibben

Can I write an excel formula to display the file save date?
 
Bob

You can use a UDF to find some properties.

'=DOCPROPS("last author")

'=DOCPROPS("last save time")

'=DOCPROPS("creation date")

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

Don't know the syntax for "file size". Perhaps someone else can jump in with
that.


Gord Dibben MS Excel MVP

On Thu, 26 Jan 2006 10:26:04 -0800, "Bob-123456789"
wrote:

In Excel 2003 I often use the following formula to display the name (and
path) of the file:
=CELL("filename",T5)

I have not figured out if there is a way to display other file information
in a cell such as the file save date (& time) or file size.

Is there a way to do this??




All times are GMT +1. The time now is 10:25 PM.

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