Jonathan has attended:
Excel VBA Intro Intermediate course
VBA
How can you tidy up code?
RE: VBA
Hi Jonathan
Sorry for the delay in answering this question.
When running code written in procedures the computer does not look for how tidy or ascetic the code is.
It only looks at whether the code is correct with no errors.
However when we edit code we usually like the code to be easily readable.
To this end I use indents to tidy up the code. Every new routine in side a procedure is indented for easy reading.
The use of comments also assists in the understanding of the procedures
Hope this helps
Carlos