I have a User field that allows multiple users to be tagged. I'd like to write a formula that will pull those people's first names into a comma-delimited list. I came up with the following:
LEFT({Users}, FIND(" ", {Users})-1)
...which does the trick if there's just one person tagged. But if multiple people are tagged, the formula only returns the first name of the first person.
Is there a way to make this work? I have a feeling this might require a REGEX formula though I'm not so clear on how they work...
Thank you!