Start a new topic
Answered

How can I insert a line break in a lookup expression ?

How can I insert a line break in a lookup expression ?


Best Answer

Lookup expressions in semQL allow aggregating strings using the string_agg <lookup_type>. If you need to insert line breaks between the values, you can use the following <separator> in a Markdown Component Type expression :

lookup string_agg stringAtt separated by '  
' from yourChildEntity end



There are actually two spaces followed by a line break inside the quotes, which is one of the options supported by the Markdown spec.

1 Comment

Answer

Lookup expressions in semQL allow aggregating strings using the string_agg <lookup_type>. If you need to insert line breaks between the values, you can use the following <separator> in a Markdown Component Type expression :

lookup string_agg stringAtt separated by '  
' from yourChildEntity end



There are actually two spaces followed by a line break inside the quotes, which is one of the options supported by the Markdown spec.

Login to post a comment