B
Bob Vance
Trying to get the date entered into column B when something is entered into
the ajoining cell in A row, was advised this would work, but it dosent seem
too, any help please
--
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Intersect(Target, Range("A:A")) Is Nothing Then Exit
Sub
On Error GoTo Errorline:
Application.EnableEvents = False
With Target
If Len(.Value) > 0 Then
.Offset(, 1) = Format(Now(), "mm/dd/yy")
End If
End With
Thanks in advance for your help....Bob Vance
the ajoining cell in A row, was advised this would work, but it dosent seem
too, any help please
--
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Intersect(Target, Range("A:A")) Is Nothing Then Exit
Sub
On Error GoTo Errorline:
Application.EnableEvents = False
With Target
If Len(.Value) > 0 Then
.Offset(, 1) = Format(Now(), "mm/dd/yy")
End If
End With
Thanks in advance for your help....Bob Vance