You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 1, 2022. It is now read-only.
The Exit Sub statement has been used outside of the "Finally" block (In this case it is labelled "exitSub") in at least one place in the code. The Exit Sub statement should be replaced by Goto exitSub. The code should be searched through for all uses of Exit and fix this.
The problem with using Exit Sub or Exit Function instead of Goto exitSub is that if in the future someone puts more logic into the exitSub block, they will expect that this will always be called when the procedure exits normally. At the moment there is no logic, so there is currently no functional difference.