Hey @Juraj_Ivkovac,
If I have understood correctly, you’re correct in that you want to use an IF statement as below.
IF(Suffix != “”, CONCATENATE({Prefix}," “,{First Name},” “, {Last Name},”, “, {Suffix}), CONCATENATE({Prefix},” “,{First Name},” ", {Last Name}))
What the above formula is doing is:
IF the Suffix field is not equal to “null”, Concatenate these fields
{Prefix}," “,{First Name},” “, {Last Name},”, ", {Suffix})
Otherwise, IF it is null, only concatenate these fields
{Prefix}," “,{First Name},” ", {Last Name}
I hope that helps!
Thanks,
Adam
Hey @Juraj_Ivkovac,
If I have understood correctly, you’re correct in that you want to use an IF statement as below.
IF(Suffix != “”, CONCATENATE({Prefix}," “,{First Name},” “, {Last Name},”, “, {Suffix}), CONCATENATE({Prefix},” “,{First Name},” ", {Last Name}))
What the above formula is doing is:
IF the Suffix field is not equal to “null”, Concatenate these fields
{Prefix}," “,{First Name},” “, {Last Name},”, ", {Suffix})
Otherwise, IF it is null, only concatenate these fields
{Prefix}," “,{First Name},” ", {Last Name}
I hope that helps!
Thanks,
Adam
Hey @Adam_Mintram
Thank you very much for your guidance.
For some reason it´s not working for me … is there maybe a small syntax problem?

Hey,
Oh that’s strange! I wonder if the first Suffix needs {} around it.
It is working for me so I wonder if my field names are slightly different to yours.
Otherwise, if you delete and then try to manually input the formula (using the existing as a reference) to ensure it links all the fields ok.
Let me know how you get on? I will see if I can find anything else in the meantime.
Adam


Hey @Adam_Mintram
Thank you very much for your guidance.
For some reason it´s not working for me … is there maybe a small syntax problem?

IF(
{Suffix},
CONCATENATE(
{Prefix},
" ",
{First Name},
" ",
{Last Name}
),
CONCATENATE(
{Prefix},
" ",
{First Name},
" ",
{Last Name},
", ",
{Suffix}
)
)
Hey @Adam_Mintram,
Thanks for your screenshot. Now I have found the error. By copying your code probably a wrong formatting for the quotes was transferred and in further consequence the code was corrupted. If you look at the quotes in my code, you can see that they have different formatting.
Problem solved - Thank you very much, I am very happy with the result. :grinning_face_with_big_eyes: Thanks also to @Ben.Young !
Ah brilliant @Juraj_Ivkovac !
Glad you managed to sort it
.
All the best,
Adam
Hi,
Despite the case is solved, I would suggest to use a bit different approach in similar cases. In some complex formulas that helped me to avoid double use of ‘complex’ part.
CONCATENATE({Prefix},' ',{First Name},' ',{Last Name},IF({Suffix},', '&{Suffix}))