Hi! I tried to adapt this for a checklist of mine, and the formula isn’t accepted. Can you tell me what I’m doing wrong? Here’s my adapted formula:
IF(
{NEW: Canceled/No Show}=BLANK(),
“Attended” & ", " & “\n”) &
IF(
{NEW: Send Materials}=BLANK(),
“Send Materials” & ", " & “\n”) &
IF(
{Scored}=BLANK(),
“Score Test” & ", " & “\n”) &
IF(
{NEW: Essay?}=BLANK(),
“No Essay” & ", " & “\n”) &
IF(
{NEW: TW: Upload docs}=BLANK(),
“Upload docs” & ", " & “\n”) &
IF(
{NEW: TW: Add to Results}=BLANK(),
“Add to Results” & ", " & “\n”) &
IF(
{NEW: Set follow-up in Tasks}=BLANK(),
”Set follow-up Tasks” & ”, ” & ”\n”)
)
Hi! I tried to adapt this for a checklist of mine, and the formula isn’t accepted. Can you tell me what I’m doing wrong? Here’s my adapted formula:
IF(
{NEW: Canceled/No Show}=BLANK(),
“Attended” & ", " & “\n”) &
IF(
{NEW: Send Materials}=BLANK(),
“Send Materials” & ", " & “\n”) &
IF(
{Scored}=BLANK(),
“Score Test” & ", " & “\n”) &
IF(
{NEW: Essay?}=BLANK(),
“No Essay” & ", " & “\n”) &
IF(
{NEW: TW: Upload docs}=BLANK(),
“Upload docs” & ", " & “\n”) &
IF(
{NEW: TW: Add to Results}=BLANK(),
“Add to Results” & ", " & “\n”) &
IF(
{NEW: Set follow-up in Tasks}=BLANK(),
”Set follow-up Tasks” & ”, ” & ”\n”)
)
You had one extra parenthesis at the end – but also, you have a mixture of “curly” quotes and “straight” quotes in your formula text. Airtable’s formula editor doesn’t like “curly” quotes and will throw an error if they are in your formula.
Try copy-pasting this version of your formula where I’ve removed the extra parenthesis, and made sure all the quotes are of the “straight” variety:
IF(
{NEW: Canceled/No Show}=BLANK(),
"Attended" & ", " & "\n"
) &
IF(
{NEW: Send Materials}=BLANK(),
"Send Materials" & ", " & "\n"
) &
IF(
{Scored}=BLANK(),
"Score Test" & ", " & "\n"
) &
IF(
{NEW: Essay?}=BLANK(),
"No Essay" & ", " & "\n"
) &
IF(
{NEW: TW: Upload docs}=BLANK(),
"Upload docs" & ", " & "\n"
) &
IF(
{NEW: TW: Add to Results}=BLANK(),
"Add to Results" & ", " & "\n"
) &
IF(
{NEW: Set follow-up in Tasks}=BLANK(),
"Set follow-up Tasks" & ", " & "\n"
)