Certainly ; once you are in Debug mode , there are a lot of things you can do using the Immediate window ; of course certain actions may prompt Excel to display a message that the action will reset the project code execution ; but changing the value of variables should not cause this message to be displayed.
You should be aware that changing the values of variables such as For ... Next loop counters can cause unwanted outputs. Changes can also result in infinite loops. So change with full knowledge of the effect that your changes will have.
Thanks. I found the Immediate Window. I just wanted to check execution of code based on the value of a boolean variable. If an error occurs for whatever reason, my boolean is set to true and I Exit Sub to bypass remainder steps. The normal expected value of boolean is False. I wanted to see/test the execution of Exit Sub line by setting the boolean to True.