I have one field that I would like to generate from three other ones. First Name, Last Name and Company
If there is a first and last name in the directory I would like to display it as the following:
Last Name, First Name
If there is no person’s name then I would like it to only display the name of the company. I just don’t know how to remove the space and comma. Currently using this:
CONCATENATE({Last Name}, ", “, {First Name},” ",Company)
I’m thinking I need some sort of IF/THEN statement??
Thanks!

