V
Vacuum Sealed
Hi all
Is there another way to do the following so that it fires after the cell
updates, be it via the dropdown or manually entered please....
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("B2:B100")) Is Nothing Then
With ActiveCell
.Offset(0, 2).Value = "Y"
End With
End If
End Sub
Is there another way to do the following so that it fires after the cell
updates, be it via the dropdown or manually entered please....
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("B2:B100")) Is Nothing Then
With ActiveCell
.Offset(0, 2).Value = "Y"
End With
End If
End Sub