Is there a way to write 2 data items into the one input box in Blue Prism

Gary96

Member
I need to write 2 email address into one input field in blue prism. Using the write stage I can write one email address in, however after I write the second one in, it overwrites the first one. Is there a way to space them out. Any help would be greatly appreciated.
 

sahil_raina_91

Active Member
I need to write 2 email address into one input field in blue prism. Using the write stage I can write one email address in, however after I write the second one in, it overwrites the first one. Is there a way to space them out. Any help would be greatly appreciated.

Write stage will always overwrite.
You will need to concatenate both the Emails beforehand and then write that value.

Example:
Email1 : abc@xyz.com
Email2 : 123@mno.com

Use a calculation stage to concatenate these : [Email1]&" "&[Email2]
 
Top