You can combine conditions with the IF
, AND
, and OR
functions in your formula field.
I’m making some guesses here about what you want when people could be blocked while others are in progress or back burner. However, this should give you a general idea.
If this answers your question, please mark this post as the solution. Otherwise, could you please give a bit more details and a screen capture?
IF(
OR(
{Design} = "Blocked",
{UI/UX} = "Blocked",
{Art} = "Blocked",
{Client} = "Blocked",
{Backend} = "Blocked",
{QA} = "Blocked"
),
"Blocked",
IF(
OR(
{Design} = "Back Burner",
{UI/UX} = "Back Burner",
{Art} = "Back Burner",
{Client} = "Back Burner",
{Backend} = "Back Burner",
{QA} = "Back Burner"
),
"Back Burner",
IF(
OR(
{Design} = "In Progress",
{UI/UX} = "In Progress",
{Art} = "In Progress",
{Client} = "In Progress",
{Backend} = "In Progress",
{QA} = "In Progress"
),
"In Progress",
IF(
AND(
OR({Design} = "Signed Off", {Design} = "Not Needed"),
OR({UI/UX} = "Signed Off", {UI/UX} = "Not Needed"),
OR({Art} = "Signed Off", {Art} = "Not Needed"),
OR({Client} = "Signed Off", {Client} = "Not Needed"),
OR({Backend} = "Signed Off", {Backend} = "Not Needed"),
OR({QA} = "Signed Off", {QA} = "Not Needed"),
),
"Ready",
"Unknown"
)
)
)
)