Hello Everyone:
I am trying to make a long line of code apear on more then one line.
How do I make this:
Do Until Counter1 >= Wash1
Into this:
Do Until Counter1
>= Wash1
It seems like I did it before but cant remember how I did it?
Thanks
Art
Printable View
Hello Everyone:
I am trying to make a long line of code apear on more then one line.
How do I make this:
Do Until Counter1 >= Wash1
Into this:
Do Until Counter1
>= Wash1
It seems like I did it before but cant remember how I did it?
Thanks
Art
I think you can use the underscore character: "_"
Code:Do Until Counter1 _
>= Wash1
Note that the underscore is the line continuation character but it must be preceded by a space to be interpreted as such.Code:Do Until Counter1 _
>= Wash1