How to automatically insert date when text entered in neighbor
Chuck,
This macro is what I am looking for! Thanks!
How do I change it so that it only adds the date when any cell in column B
is updated instead of any cell in the spreadsheet.
Private Sub Worksheet_Change(ByVal Target As Range)
'Macro inserts date in cell to the right of the activecell upon value entry
ActiveCell.Select
If Not Selection Is Nothing Then
Application.Selection.Offset(0, 1).Value = Date
End If
End Sub
Vaya con Dios,
Chuck, CABGx3
"ek10101" wrote:
I would like to set up my spreadsheet so that when I enter text in a certain
cell the date is automatically posted in the next cell over. Any suggestions?
|