View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] warf@mailinator.com is offline
external usenet poster
 
Posts: 1
Default 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.