Our project plan has a resource field that can have up to 5 people/contacts assigned to a task. I am looking for a way to scan the field and pars/separate the resources into individual columns (example in red box below). I know it may be a strange request, but for our org, it does make sense. 😉
Here is the formula I tried using, but I don't think CHAR works for contacts:
=IF([Count AR]@row > 5, "More than 5 resources", IF([Count AR]@row = 1, Resources@row, IF([Count AR]@row > 1, LEFT(Resources@row, FIND(CHAR(10), Resources@row)), "No additional resources")))
Is parsing contacts possible? And what am I missing. Any help is (as always) greatly appreciated!