Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
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 |
#2
![]() |
|||
|
|||
![]()
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 |
#3
![]() |
|||
|
|||
![]()
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 . |
#4
![]() |
|||
|
|||
![]()
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 . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date formula | Excel Discussion (Misc queries) | |||
Formula to determine a future date based on criteria | Excel Worksheet Functions | |||
Need help troubleshooting an array formula XLXP on Win2K | Excel Worksheet Functions | |||
How do I add a date formula to a cell but hide the contents with . | Excel Discussion (Misc queries) | |||
Combine & Display “Fixed” & “Automatically Updated” Date Parts | Excel Worksheet Functions |