Use the Sleep API:
Private Declare Sub Sleep Lib "Kernel32" (ByVal dwMilliseconds As Long)
Sub TestingSleep()
Sleep 2000
Cells(1) = 1
End Sub
RBS
"StargateFan" wrote in message
...
I searched through the archives and there were a few messages
discussing this but no actual syntax could be found (at least during 2
searches).
Is there any vb equivalent to "Sleep()"?
Thanks. :oD