How Can I separate a simple new line in this output value
Example my Expectation:
Entertainment: 550
[Head Office]
Code: " Entertainment: " + employeeName + " " + “[” + employeeLocation + “]”
How Can I separate a simple new line in this output value
Example my Expectation:
Entertainment: 550
[Head Office]
Code: " Entertainment: " + employeeName + " " + “[” + employeeLocation + “]”
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.