What is wrong with my nested if? It says that that It’s invalid
IF(
AND(
{5dayswithnochange},
{issueStatusoror}=
),
"Stable ⚖",
IF(
AND(
{5dayswithnochange},
{issueStatusoror}=
),
"Stuck ",
IF...
nevermind, I forgot to add the quotes “” around the emojis :green_circle: in the equality evaluations
Correct code
IF(
AND(
{5dayswithnochange},
{issueStatusoror}=""
),
"Stable ⚖",
IF(
AND(
{5dayswithnochange},
...