What I want to do is set a flag to go from this option:
To this option:
The reason for this is that I have error handlers throughout my code and whilst I'm debugging I want to be able to see what the errors are.
Setting the error flag off:
On Error GoTo 0
Will just take me back to the last place error handling was used, like two or three procedures before the one I'm working on
You didn't say which VBA environment you are using. In Access (and only in Access, as far as I know), there is a very useful method to programmatically modify the Error Trapping setting:
I've used this many times where I have error handling set up on an outer method, but I really want to see where the code is hitting an error somewhere far down in a call stack. And just globally setting the Error Trapping to "Break on all errors" is a pain if you have expected, well-handled errors somewhere in your code, because it always stops on those! So, in Access, you can switch to "Break on All Errors" just in one section when you want to.
As per the comments, there isn't an easy way to do this other than manually change the setting in the options when you get to the section of the code you want to have a runtime error for rather than being taken to the last active error handler.