How to create a simple new line in Output Value

How Can I separate a simple new line in this output value
Example my Expectation:
Entertainment: 550
[Head Office]

Code: " Entertainment: " + employeeName + " " + “[” + employeeLocation + “]”

1 Like

Hi @ARahman,

For a new line please try Environment.NewLine command where required.
Hope it will help you.

Thanks & Regards,
Apurba

try with this expression
" Entertainment: " + employeeName +Environment.Newline+ “[” + employeeLocation + “]”

Cheers @ARahman

Wow! nice Thanks to everyone.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.