LAE

Welcome to the LAE community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Discussions

Members

Resources

Events

 View Only
  • 1.  how to make a string using field values?

    Employee
    Posted 08-25-2017 08:04

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: rebeccanew

    hi, I have one column in my filter node. In this column, there are three values such as aa,bb and cc. I am trying to connect these three values into one string aabbcc. How can I make the string? Thanks.


  • 2.  RE: how to make a string using field values?

    Employee
    Posted 08-28-2017 05:34

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: gmullin

    You can use the groupString() function in the Agg Ex node to put all of the values in one field into one single variable. You can also add a second value to the groupString() function to separate each of the values, for example groupString('field1',",") would have a comma between each value.

    groupString.brg


  • 3.  RE: how to make a string using field values?

    Employee
    Posted 08-29-2017 06:45

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: rebeccanew

    Thank you very much. I got it.