Why would this return blank and no errors?
IF(AND({Status}=“AM: Follow Up on Proposal”,{24 Hours}=“2 Days”,“yes”,“no”))
Fields:
Status=Single select
24 Hours=Formula
Why would this return blank and no errors?
IF(AND({Status}=“AM: Follow Up on Proposal”,{24 Hours}=“2 Days”,“yes”,“no”))
Fields:
Status=Single select
24 Hours=Formula
You have a misplaced closing paren. Try this:
IF(
AND(
{Status}="AM: Follow Up on Proposal",
{24 Hours}="2 Days"
),
"yes",
"no"
)
You have a misplaced closing paren. Try this:
IF(
AND(
{Status}="AM: Follow Up on Proposal",
{24 Hours}="2 Days"
),
"yes",
"no"
)
Thank you very much that worked
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.