Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SaveDate in Excel?

Status
Not open for further replies.

apbamike

MIS
Aug 2, 2000
26
US
Does Excel have an field euqivalent to SaveDate in Word?
 
what does it do in Word? i am not familiar with that function... ShannonLea
Computer Coordinator 4 Surgical Services
Athens Ga
[noevil]
 
Try putting this in ThisWorkbook in the VBA Editor:

Option Explicit

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Sheets("Mysheet").Range("A1").Value = Now()
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top