String Expressions

String expressions are used to manipulate strings and always result in a string value.

Here are a few of commonly used string expressions:  

Concatenate 2 UKG fields to create a single string value
Person.FirstName + ' ' + Person.LastName
John Doe
 
  
Concatenate 2 UKG fields and another string value
Person.LastName + ', ' + Person.PreferredName
Doe, John
   
  
Concatenate a string value and a UKG field
'Department - ' + Employment.OrgLvl1
Department - 12345

Next Bool Expressions