Hi everyone, I hope you can help.
I have an create record automation that enters the full name from the ‘sender’ field in email headers. I then have a formula field to display their firstname only. The formula looks like this:
Hi everyone, I hope you can help.
I have an create record automation that enters the full name from the ‘sender’ field in email headers. I then have a formula field to display their firstname only. The formula looks like this:
Best answer by TheTimeSavingCo
Here’s a formula you can try:
IF(
{Name},
IF(
FIND(",", {Name}),
REGEX_EXTRACT({Name}, ",\\s*([^\\s(]+)"),
REGEX_EXTRACT(TRIM({Name}), "^[^\\s]+")
)
)
Might also be worth trying a Field Agent for this so that you don’t have to worry as much about weird data breaking the formula too, and my prompt here was ‘Extract name from this field’

Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.