ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Same code, different line (https://www.excelbanter.com/excel-programming/287039-same-code-different-line.html)

Neil[_14_]

Same code, different line
 
How do you continue the same line of code on a new line?
Basically instead of having one long line where you would
need to scroll horizontally to see the end, you can have
it spread over a number of lines and only scroll
vertically.

Thanks for your speedy response.

Colo[_73_]

Same code, different line
 
Hello Neil,

Code line can be devided by _.
(a space and underbar)

eg.


Code:
--------------------

MyVariable = _
"A" & _
"B" & _
"C"

--------------------



---
Message posted from http://www.ExcelForum.com/


nnߤ

Same code, different line
 
"Neil" wrote in message
...
How do you continue the same line of code on a new line?
Basically instead of having one long line where you would
need to scroll horizontally to see the end, you can have
it spread over a number of lines and only scroll
vertically.

Thanks for your speedy response.


It's done using undersco

ActiveWindow.Selection.SlideRange.Shapes _
.AddShape(msoShapeRectangle, 246, _
288, 138, 132).Select




Rob van Gelder[_4_]

Same code, different line
 
Neil,

Your character is the underscore.
Be aware, it must be at the end of the line, must be after a space and you
there is a limit to the number of "line continuations" you're allowed.

Sub testit()
Dim strMyValue As String

strMyValue = _
"How do you continue the same line of code on a new line? " &
vbNewLine & _
"Basically instead of having one long line where you would" &
vbNewLine & _
"need to scroll horizontally to see the end, you can have" &
vbNewLine & _
"it spread over a number of lines and only scroll" & _
"vertically."

MsgBox strMyValue

End Sub


"Neil" wrote in message
...
How do you continue the same line of code on a new line?
Basically instead of having one long line where you would
need to scroll horizontally to see the end, you can have
it spread over a number of lines and only scroll
vertically.

Thanks for your speedy response.





All times are GMT +1. The time now is 12:12 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com