Forum FlexPro – Discuss your topic!

wrapping the same line of code in a formula

Home > Community > General > wrapping the same line of code in a formula

Ansicht von 3 Beiträgen - 1 bis 3 (von insgesamt 3)
  • Autor
    Beiträge
  • #12570
    Dermot CraddenDermot Cradden
    Teilnehmer

    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.

    #8233
    Dermot CraddenDermot Cradden
    Teilnehmer

    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.

    #8921
    Bernhard KantzBernhard Kantz
    Teilnehmer

    You can split the lines by using an ‘_’ at the end (similar to Visual Basic):

    Signal : Signal2 : Signal3

    is the same as

    Signal : _
    Signal2 : _
    Signal3

    or

    Signal _
    : Signal2 _
    : Signal3
    

    The continuation character ‘_’ must be the last character on the line, but it basically can split an expression anywhere.

    Support
    support@weisang.com

Ansicht von 3 Beiträgen - 1 bis 3 (von insgesamt 3)
  • Du musst angemeldet sein, um auf dieses Thema antworten zu können.