Help! How do I combine first name (column 1) and last names (column 2) in a 3rd column?
Combine name & surname
Klaus_Becker
#2
hi,
you can creat a formula type field, and then use one of the following formulas:
CONCATENATE(NAME, " ", SURNAME) -> Output will be “Klaus Becker”
CONCATENATE(SURNAME, ", " , NAME) -> Output will be “Becker, Klaus”
Vic_Carvalho
#5
My sincere apology and thanks. It does work. I at first included ‘->’; you can tell - i am a newbie.
Thanks & God Bless! Victor