I am using On Error Resume Next within a for...next loop, and need to check if an error occurs within each loop. I'm wondering if the On Error Resume Next statement itself clears any existing error?
For example, in Sub A below, the On Error Resume Next statement is inside the loop, versus B...