I am trying to add an AND statement to this formula:
IF(
{Date Received} = "",
"Unsure of due date",
IF(
DATETIME_FORMAT({Date Received}, 'MM/DD') = DATETIME_FORMAT(DATEADD(NOW(), -14, 'day'), 'MM/DD'),
"TRUE",
"No match"
)
)
The AND statement I want to be if a cell does not equal a certain value from a dropdown. So I think on its own, the and statement should be something like:
{Status} != "MoveOn"
I just can't figure out where to put each piece and how to close the parentheses. The screenshot is my table without the AND part of the formula.
Any help would be greatly appreciated!