Excel 2000 help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do you formulate a cell to automatically insert the current date? (Not
in Header/Footer but in a cell of the actual body of the worksheet)

I want my form to automatically insert the current date each time I update it.
 
=TODAY() or =NOW()

Note that these formulas update every time a workbook is opened/saved.

Dave
 
Let's say you want cell A1 to contain the date whenever any cell on that
sheet is changed. In worksheet code put the following macro:

Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
Range("A1").Value = Format(Now(), "dd mmm yyyy")
Application.EnableEvents = True
End Sub
 
The poster want the date entered only when the sheet has been updated.
Putting a formula in the cell will cause it to change everyday, whether other
cells have been updated or not.
 
Back
Top