Append text to target with Store Text

Is it possible to a add a space after store text target to same column of csvLine?

Post your macro code and rewrite your question what do you do ?

This is just a start, there will be additional columns added later, First column is a persons name that will need to be entered into a lookup field. However look up field needs a space after the name in order to select just one record rather than list ones that are similar. So in the 1st column I would need the name with a space added to the end of the text stored for that column.

{
“Name”: “Look up list”,
“CreationDate”: “2020-5-6”,
“Commands”: [
{
“Command”: “storeText”,
“Target”: “xpath=//[@id=“calendar”]/div[2]/div[4]/table[1]/div[2]/div/div[1]/a/div/div[1]&[ ]",
“Value”: “!csvline”
},
{
“Command”: “csvSave”,
“Target”: “Lookup-List”,
“Value”: “”
},
{
“Command”: “storeText”,
“Target”: "xpath=//
[@id=“calendar”]/div[2]/div[4]/table[1]/div[3]/div/div[1]/a/div/div[1]”,
“Value”: “!csvline”
},
{
“Command”: “csvSave”,
“Target”: “Lookup-List”,
“Value”: “”
}
]
}

Simply solution for the first storetext save it in variable, NOT in !csvline

After with executeScript_Sandbox edit the value and save in variable again

and after save tha variable in !csvline

Simple and fast solution