Excel 2000 help

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.
 
G

Guest

=TODAY() or =NOW()

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

Dave
 
G

Guest

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
 
G

Guest

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top