Merge two fields in a collection

BPnovice

New Member
Hi,

I have a collection with two field - one with field with first name the other field with last name. Now I want to combine them so I get a collection were first and last name is in the same field. How can you do that?
 

Shubham.Semwal

New Member
Hi,

You can try it using calculation stage and a loop stage, under the loop stage add a calculation stage in which the expression will be like [collectionName.FirstName]&" "&[collectionName.LastName] and store it in a new collection as FullName(or your choice fieldName) as Field name. This is an easy way to solve your problem.

Thanks,
Shubham.
 
Top