I would like to have macro called 2 seconds after a cell changes.
I am stuck with this code.
Any help would be appreciated.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Target.Worksheet.Range("B2")) Is Nothing Then
Application.OnTime Now + TimeValue("00:00:02"), Macro
End Sub