Topic
wrapping the same line of code in a formula
- This topic has 2 replies and 2 voices and was last updated 15 years, 1 month ago ago by Dermot Cradden.
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
06.04.2010 at 08:03 #33775Dermot CraddenParticipant
Is it possible to have the same line of code wrap onto the next line in the formula window? I am concatenating values from several data series and it is creating very long lines of code.
06.04.2010 at 08:03 #33777Dermot CraddenParticipantIs it possible to have the same line of code wrap onto the next line in the formula window? I am concatenating values from several data series and it is creating very long lines of code.
06.04.2010 at 20:14 #33776Bernhard KantzParticipantYou can split the lines by using an ‘_’ at the end (similar to Visual Basic):
[code]Signal : Signal2 : Signal3[/code]is the same as
[code]Signal : _
Signal2 : _
Signal3[/code]or
[code]Signal _
: Signal2 _
: Signal3
[/code]
The continuation character ‘_’ must be the last character on the line, but it basically can split an expression anywhere.Support
support@weisang.com -
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.