line break

How i insert a line break in concatenate?

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

 

 

Solved Solved
0 6 284
1 ACCEPTED SOLUTION

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

[year_old])

 

View solution in original post

6 REPLIES 6

concatenate([_THISROW].[Nick_name]&"

"& [year_old] )

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

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. 

Very correct.

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

[year_old])

 

Thanks guys, I did it, with your help

Top Labels in this Space