Hi,
I have about 50 task fileds that each have a status. They can be marked as Assigned, In Progress, Complete, Question for Supervisor, Question for Administrator. Each field is a multiple select field, because sometimes there is a question for both the supervisor and the administrator.
I have a view for the supervisor and a view for the administrator that are each filtered to only show tasks that have a question for them. I have a formula field for each them that pulls out which task has the question.
The formula for the supervisor is as follows: (The admin has the same formula, just with ADMIN instead of SUP in the formula)
CONCATENATE(
IF({Task A Status}="Questions for SUP", "Task A"),
IF({Task B Status}="Questions for SUP", ", Task B"),
IF({Task C Status}="Questions for SUP", ", Task C"),
IF({Task D Status}="Questions for SUP", ", Task D")
)
This works great. My question is, what if I have a question for both the supervisor and the administrator. Right now, if both those options are selected, the task does not get flagged by either formula, and both the SUP and the ADMIN don’t know that there is a task waiting for their attention. How do I put in the formula for the SUP to flag any task that is either Questions for SUP or Questions for SUP and Questions for ADMIN?