Mar 25, 2003 #1 apbamike MIS Joined Aug 2, 2000 Messages 26 Location US Does Excel have an field euqivalent to SaveDate in Word?
Mar 25, 2003 #2 cmpgeek Technical User Joined Feb 11, 2003 Messages 282 Location US what does it do in Word? i am not familiar with that function... ShannonLea Computer Coordinator 4 Surgical Services Athens Ga Upvote 0 Downvote
what does it do in Word? i am not familiar with that function... ShannonLea Computer Coordinator 4 Surgical Services Athens Ga
Mar 25, 2003 #3 carrr Technical User Joined Sep 10, 2001 Messages 3,543 Location US 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 Upvote 0 Downvote
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