How to type 2 words with space in a field

I have 2 columns in Excel, one for first name and the other for last name
I want to record a first name each time and put it in a designated field, then put a space and then put the last name
If I try it (without the space right now because I don’t know how to do it) then the last name overrides the first name
How can this be done? Thanks

In the Type Into:

firstNameVariable + " " + lastNameVariable

@postwick
Hi
But I am taking the values from excel sheet like this

Use currentrow(“Row1Name”).tostring +" "+currentrow(“Row2Name”).tostring

@mironb

Use currentrow(“YourColName”).tostring +" "+currentrow(“YourColName”).tostring
Use one Type into Activity

@postwick
Thanks its works fine

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.