Concatenate column field data

I have a table component with a column for first name and a column for last name.

Is it possible to add a custom column for full name which will be first name + last name?

Yes
Though you should concatenate it before adding it to the table component...
in your custom column you can map it to
{{currentSourceRow.first_name + ' ' + currentSourceRow.last_name}}

2 Likes

Thanks, I should have seen that...

{{ currentSourceRow.Employee_LastName }} {{ currentSourceRow.Employee_FirstName }}

Also worked fine for table display.

1 Like