The Airtable Community will undergo scheduled maintenance on September 17 from 10:00 PM PST to 11:15 PM PST. During this period, you may experience temporary disruptions. We apologize for any inconvenience and appreciate your understanding.
IF({Priority of task} = OR("Emergency","Important","Urgent"), SWITCH({Days until deadline},3,"3️⃣",2,"2️⃣",1,"1️⃣",0,"‼️"),"This is not an important task")
But the result is that all tasks shows “This is not an important task” even the priority is emergency. I wonder is it due to the misuse of OR() in the formula? Can OR() be used like IF(… = OR(…, …, …) , … , … ) this way? Thanks.
IF(
OR(
{Priority of task} = "Emergency",
{Priority of task} = "Important",
{Priority of task} = "Urgent"
),
SWITCH( {Days until deadline},
3,"3️⃣",
2,"2️⃣",
1,"1️⃣",
0,"‼️"
),
"This is not an important task"
)
IF(
OR(
{Priority of task} = "Emergency",
{Priority of task} = "Important",
{Priority of task} = "Urgent"
),
SWITCH( {Days until deadline},
3,"3️⃣",
2,"2️⃣",
1,"1️⃣",
0,"‼️"
),
"This is not an important task"
)