Hi Smartsheet Community,
Recently I've been working on a column that allows me to assign required approvals based on certain roles (see below).
I want to create a formula that can output an role if it's associated contact has been filled in or not. So for the example below, I would like it to output Project Owner AND Man & Ops because both of their contacts have been added. However, the formula I have is only able to pick up on the first true condition, and ignores the other one.
For reference, this is the formula I've been using so far:
=JOIN(IF(NOT(ISBLANK([Project Owner Contact]@row)), "Project Owner", IF(NOT(ISBLANK([Man & Ops Contact]@row)), "Man & Ops")))
I was wondering if there was any way for me to output two or more values based on whether or not their associated role has a contact in it's designated contact column.
Please let me know if that would be possible. Thanks for your time!