Concatenate Two Fields

0
Hi, I have two columns in my table one for firstname and one for surname. I want to update a third, which is fullname with the two concatenated together. I have a microflow that gets the appropraite records but I'm unsure of the systax to join the two columns with an appropriate space in between. Thanks Nick Ford
asked
2 answers
1

Should probably look like this:

$Entity/FirstName + ' ' + $Entity/LastName

Of course, empty checks and the like would have to be done beforehand in this case.

answered
0

Looks good thanks

answered