FORMULA LANGUAGE
The column formula of the view that displays these two values has its view properties set to Lines per row = 2 and Shrink rows to content and column properties set to Multi-value separator = New Line. The column value formula is the following:
@Trim(profile)
The @Explode function replaces the semicolon (;) that returns to the profile field with the colon (:) which indicates to the @Trim function in the column formula that the two values are a text list.
tempAddress := @GetProfileField("Profile";"userAddress";@UserName);
@SetDocField(@DocumentUniqueID;"name";tempName);
@SetDocField(@DocumentUniqueID;"address";tempAddress);