Hello Airtablers!
For my CRM I’m trying to automate the ranking of my prospects from “ :fire: Flaming hot” to " :skull: Dead".
I tried using a SWITCH formula but got in difficulties, so I reverted to IF and DATETIME_DIFF.
I want to switch between the 6 values below and though I managed an IF statement with just 2 values, when I try 6 (and DATETIME_DIFF) I get no-where (I even checked for curly brackets, straight quote marks and the number or parentheses)!
Can you help?
I tried the following:
IF({Last Contact}=TODAY(),"🔥 Hot!",
IF((DATETIME_DIFF{Last Contact},TODAY(),'days')>3,"🌡 Warm",
IF((DATETIME_DIFF{Last Contact},TODAY(),'days')>7,"😎 Chilled",
IF((DATETIME_DIFF{Last Contact},TODAY(),'days')>21,"🚰 Tepid",
IF((DATETIME_DIFF{Last Contact},TODAY(),'days')<90,"🥶 Cold",
"💀 Dead!")
)
)
)
)
Thanks in advance!