line break

How i insert a line break in concatenate?

ex: concatenate([_THISROW].[Nick_name]&’- ‘LINE BREAK & [year_old]

concatenate([_THISROW].[Nick_name]&"

"& [year_old] )

3 Likes
yes, I used single quotes ' concatenate([_THISROW].[Nick_name]&' '& [year_old] ) double quotes " didn't work

concatenate([_THISROW].[Nick_name] & "- " &

[year_old])

This should work without any problem. You have to actually press Enter Key after the first/starting double quotes in the expression editor and go to next line and then type the second/closing double quotes.

2 Likes

Very correct.

1 Like

Thanks guys, I did it, with your help