Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The code
debug.print x debug.print y will print x and y on separate lines in the Immediate window. How can I tell debug.print not to skip to the next line? Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I print current row in same place on paper but not print surrounding cells??? | New Users to Excel | |||
Output Text in specific place | Excel Programming | |||
How would I select output to a file or Debug? | Excel Programming | |||
Debug.Print in a WITH procedure? | Excel Programming | |||
Debug.Print | Excel Programming |