Hi @Madalina.Belciu,
Sometimes it’s easier to break things down into an extra field or two.
I would setup an extra field called something like ‘review range’ that holds your 60 and 90 days intervals and use a SWITCH formula. See below.
SWITCH(Status,
"Blog", 60,
"Newsletter", 60,
"Video", 90
)
Then your ‘Needs Review’ field can contain the following formula.
IF(DATETIME_DIFF({Due Date}, TODAY(), 'days')<={Review Range (days)}, "✅ Yes", "⛔ No")
Hopefully, this is what you are looking for.