0

I would like to have all lines showed inside of the expression builder. I want to avoid the following:

Loses overview

This works in pipeline runs, but is hard to debug and check.

I want the following, which is easy to read and debug:

Multiline dynamic content

Unfortunately this leads to newline characters being introduced in the resulting expression, which breaks the pipeline.

Any suggestions to achieve the above solution?

Aswin
  • 4,090
  • 2
  • 4
  • 16
jbizco
  • 1

1 Answers1

0

String interpolation treats the enter as new line in result. As an alternative you can use concat() in dynamic content.

Example:

enter image description here

Result:

enter image description here

Rakesh Govindula
  • 5,257
  • 1
  • 2
  • 11