Does anyone know how to clear the immediate window using VBA?
While I can always clear it myself manually, I am curious if there is a way to do this programmatically.
or even more simple
Sub clearDebugConsole() For i = 0 To 100 Debug.Print "" Next i End Sub