I want On Error to loop indefinitely if necessary. (On very few occasions it takes 4/5 attempts to force my code to go through, but most times it's fine)
The on error works the first time around, but if I get a second error message, the error pops up.
I've also tried putting the on error in the extract_details sub, but also experiencing the same issue. I'm doing it this way as I need the code to run again if an error is generated.
Would anyone be able to assist?
Code:
On Error GoTo StartAgain7StartAgain7:
On Error GoTo StartAgain7
Call extract_details
The on error works the first time around, but if I get a second error message, the error pops up.
I've also tried putting the on error in the extract_details sub, but also experiencing the same issue. I'm doing it this way as I need the code to run again if an error is generated.
Would anyone be able to assist?