Hi all
Currently using the following (resides in a checkbox column) that is working perfectly for a project to tag items that are then pulled into a report.
=IF(AND([End Date]@row <= TODAY($HuddleDays$1), [End Date]@row >= TODAY(-4)), 1, 0)
I've found that if an items happen to have a [Status] that is <> Complete and falls outside the 4 days ago condition it gets lost.
I would like to add an OR to the above so it will check for those conditions OR if the [End date] >TODAY(-4), [Status] <> "Complete"
Tried incorporating other examples, but can't get the syntax right. Thought this might do it, however it doesn't check the box unless the condition above is met. It doesn't error either
=IF(AND(OR([End Date]@row > TODAY(-4), Status@row <> "Complete"), [End Date]@row <= TODAY($HuddleDays$1), [End Date]@row >= TODAY(-4)), 1, 0)
Thanks in advance