ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   formula to display "updated" date (https://www.excelbanter.com/excel-worksheet-functions/8689-formula-display-%22updated%22-date.html)

cindi

formula to display "updated" date
 
Is there a way to have a cell display the date that a
worksheet was updated (not just merely opened or printed,
but actually updated, in someway)?

Thanks,

Cindi

Peo Sjoblom

See:

http://tinyurl.com/5xu86


Regards,

Peo Sjoblom

"cindi" wrote:

Is there a way to have a cell display the date that a
worksheet was updated (not just merely opened or printed,
but actually updated, in someway)?

Thanks,

Cindi


cindi

what does this mean? What is a UDF and how do I get
there?

Sorry for my ignorance.

Cindi

-----Original Message-----
See:

http://tinyurl.com/5xu86


Regards,

Peo Sjoblom

"cindi" wrote:

Is there a way to have a cell display the date that a
worksheet was updated (not just merely opened or

printed,
but actually updated, in someway)?

Thanks,

Cindi

.


Gord Dibben

cindi

A UDF is a User Defined Function. Similar to Excel's built-in Functions but
written because Excel does not have that particular Function.

If not familiar with VBA and macros, see David McRitchie's site for more on
"getting started".

http://www.mvps.org/dmcritchie/excel/getstarted.htm

In the meantime..........

First...create a backup copy of your original workbook.

To create a General Module, hit ALT + F11 to open the Visual Basic Editor.

Hit CRTL + R to open Project Explorer.

Find your workbook/project and select it.

Right-click and InsertModule. Paste the code in there. Save the
workbook and hit ALT + Q to return to your workbook.

Code to paste into the module............

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("last save time")


Gord Dibben Excel MVP

On Wed, 5 Jan 2005 07:53:53 -0800, "cindi"
wrote:

what does this mean? What is a UDF and how do I get
there?

Sorry for my ignorance.

Cindi

-----Original Message-----
See:

http://tinyurl.com/5xu86


Regards,

Peo Sjoblom

"cindi" wrote:

Is there a way to have a cell display the date that a
worksheet was updated (not just merely opened or

printed,
but actually updated, in someway)?

Thanks,

Cindi

.




All times are GMT +1. The time now is 04:27 AM.

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