Topic
wrapping the same line of code in a formula
Startseite ' Community ' Allgemein ' wrapping the same line of code in a formula
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 15 Jahren, 1 Monaten von Dermot Cradden aktualisiert.
-
AutorBeiträge
-
06.04.2010 um 08:03 Uhr #33775Dermot CraddenTeilnehmer
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 um 08:03 Uhr #33777Dermot CraddenTeilnehmerIs 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 um 20:14 Uhr #33776Bernhard KantzTeilnehmerYou 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 -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.