VBA: Pausing Code Execution

M

Michael Loganov

Hi,

how can I pause a code execution for, let's say 5 seconds?

Thanks in advance
Mike
 
C

Chip Pearson

Mike,

Try something like the following:

Application.Wait Time:=Now + TimeSerial(0, 0, 5)
 
Top