In column A I have data validation that lets a user select a value from a list.
When the value Complete is selected, I want the cell to the right in column B to show the date it was changed to Complete
The data validation runs from A1:A2500 so would want the rule to apply to B1:B2500
My attempt at doing this would only work for Cell A1 & B1,
How can i modify this to work for the required range ?
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A1")) Is Nothing Then
Select Case Range("A1").Value
Case "Complete"
Range("B1").Value = Now
Case Else
Range("B1").Value = 0
End Select
End If
End Sub