Is there where to do line breaks in the expression builder of azure data flow?

2.5k Views Asked by At

I am using the Expression Builder of Derived Column setting of the Azure Data Flow Activity. I am trying to code ac line break. So it looks like:

Value1 Value2

What is the syntax to code this?

1

There are 1 best solutions below

0
On

You can use '\n' to code ac line break in the DerivedColumn.

In my case, I use concat(Column1,concat('\n',Column2)) epression to concat two columns. enter image description here

So I get the results, the Column3 looks like:
Value1 Value2

enter image description here