Regarding Text Concat

0
I'm a newbie to Mendix and I trying to achieve below condition, help me in setting it in a right way. I have four Text field like below, and each field has limitation to max 4 characters how can I concate them and add it as single value into a single Attribute. 
asked
1 answers
1

Hi Selvakumar,

 

1.Create a new variable 

2.For concat use below expression

“trim($EntityName/Value1) + ' ' + trim($$EntityName/Value2)”

3.Assignee new value to new variable

answered