Here's the logic I'm going for—if a request is over a week old AND the "Request complete" checkbox isn't checked, then the row should be marked as overdue.
The following formula for the "over a week old" part works:
=IF((TODAY() - [Request Date]1) - 7 > 0, "overdue", "")
This single formula for "Request complete" not being checked works:
=IF([Request Complete]1 = 0, "overdue", "")
But I can't seem to combine them. This is what I'm trying:
=IF(AND((TODAY() - [Request Date]1) - 7 > 0, [Request Complete]1 = 0), “overdue”, “”)
This is #UNPARSEABLE. What am I doing wrong?