Explain about the WAIT method of Application Object
This WAIT method is userful in case of
Click on below mentioned image to watch the video:
Sub WaitMethodOfApplicationObject()
Dim i As Integer
For i = 1 To 5
ActiveSheet.Cells(i, 1).Value = i
Application.Wait (Now() + TimeValue("00:00:01"))
Next
End Sub