Yes it's possible but you don't provide much to go on.
Right click the sheet tab, view code and paste this in. When A1 changes A2
gets the date put in. You can have a range of cells and adjust the offeset
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then
Target.Offset(1, 0).Value = Date
End If
End Sub
Mike
"Kelly P" wrote:
> I have an excel spreadsheet that I would like to have the date changed to the
> current date when another cell value is changed. Is this possible?
|