Very Often I create many blank codes lines during VBA coding.
Is there available add-in to clean up those empty lines, to generate a more neatly-aligned VBA code?
Thanks!
e.g.
Thanks a lot!
Is there available add-in to clean up those empty lines, to generate a more neatly-aligned VBA code?
Thanks!
e.g.
Code:
Sub XYZ()
Dim A as Integer
(empty)
(empty)
A = A + 1
(empty)
MsgBox A
(empty)
(empty)
End Sub
Thanks a lot!