Feel like this should be a relatively simple formula, but can't get it to work!
I want to do this:
If content due date is greater than 4 workdays from today OR if content submitted is checked return green
If content due date is between 1-4 workdays from today and content submitted is not checked return yellow
If content due date is equal to or past today and content submitted is not checked return red
=IF(OR([Content Submitted]@row = 1, TODAY() > WORKDAY([Content Due]@row, 4), "Green")), IF(AND([Content Submitted]@row=0, TODAY() > [Content Due]@row, TODAY <= WORKDAY([Content Due]@row, 4), "Yellow")), IF(AND([Content Submitted]@row=0, TODAY() >= [Content Due]@row), "Red"))