I'm pretty new to smartsheets and can't quite get the syntax right for what I'm trying to get at.
This is what I'm trying to achieve in plain language:
IF YEAR([Due Date]@row) = YEAR(TODAY())
AND(WEEKNUMBER([Due Date]@row) = 52
AND WEEKNUMBER(TODAY()) = 1)
THEN "This Week"
ELSE "Not This Week"
END
Thanks for any help!