E
Ed
I had an idea, and thought I would post it here to see if it survived
scrutiny. A line in my macro errored because another process wasn't
completely done. Is it possible and would it be okay to use On Error Resume
Next and the error code with an IF to loop back through the missed
instruction until it completes?
I'm thinking something like:
Do
On Error Resume Next
' Do This
If Err.Number <> 0 Then
Loop
Else Exit Do
End If
On Error GoTo 0
Ed
scrutiny. A line in my macro errored because another process wasn't
completely done. Is it possible and would it be okay to use On Error Resume
Next and the error code with an IF to loop back through the missed
instruction until it completes?
I'm thinking something like:
Do
On Error Resume Next
' Do This
If Err.Number <> 0 Then
Loop
Else Exit Do
End If
On Error GoTo 0
Ed