Hi. I'm struggling with a formula to include a blank attachment field as part of 3 AND conditions. I'm testing this in my base before I put the AND part into a make.com airtable trigger module.
At the moment, I have this:
IF(
AND(
{Ind Doc}!=BLANK(),
DATETIME_DIFF(
NOW(),{Record Created}, "days"
)
>13,
DATETIME_DIFF(
NOW(),{Record Created}, "days"
)
<30),
"YES",
"NO"
)
This works, but ignores the first parameter and returns "YES" even for records that have an attachment in {Ind Doc}
(Sorry if syntax for the multi-line formula is incorrect, I'm only just starting to learn to write formulas like this)! 🙂