Code:
Private Sub WorkSheet_Change(ByVal Target As Range)
If Target.Address = "$Q$2" Then
If Second(Target) = 30 Then
Worksheets("Hardware").Select
Range("H2:H2968").Select
Selection.Copy
Range("G2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End If
End If
End Sub
What I want this to do is preform the copy/paste replacement everytime the Cell R3 changes to 30 seconds. In simplier terms, I want to perform an operation every 30 seconds.
This seems like it should work but doesn't....?