Try:
IF(OR({Feedback}, AND({Difference Triage-Online date} =<14, {Difference Triage - Closing} =< 14, DATEADD(TODAY(),-1,'day')=DATETIME_FORMAT({Feedback ingevuld},'M/D/YYYY'))),'True')
Hi Kamille,
Thanks for the help, however it gives an error.
I think its better to skip the part of ‘feedback ingevuld’ since that part is optional. However, this wont work as well:
IF(
OR(
{Feedback} =! BLANK(),
AND(
{Difference Triage-Online date} =<14,
{Difference Triage - Closing} =< 14,
),
“True”
)
Hi Kamille,
Thanks for the help, however it gives an error.
I think its better to skip the part of ‘feedback ingevuld’ since that part is optional. However, this wont work as well:
IF(
OR(
{Feedback} =! BLANK(),
AND(
{Difference Triage-Online date} =<14,
{Difference Triage - Closing} =< 14,
),
“True”
)
You’re missing a parentheses to close out your OR() statement, and have an extra comma after the second “14”. :slightly_smiling_face:
I would also modify the formula to drop the “=! BLANK()”. It’s a good idea to avoid BLANK() as much as possible as Airtable has trouble with that function sometimes for some reason.
IF({Feedback} … is the same as IF({Feedback} != BLANK()
Try this:
IF(OR({Feedback}, AND({Difference Triage-Online date} =< 14, {Difference Triage - Closing} =< 14)), "True")