place output of several debug.print statements on the same line
Either use Debug.Print "value one" & " " & "value two" or put a
semicolon at the end of each line.
Debug.Print "value one";
Debug.Print "value two";
Debug.Print "value three"
The second method allows your Debug.Print statements to fall any place
within the code. The first requires you know everything you want to
Debug.Print up front.
|