What I need: If a date is entered into the [HR Review Date] change the [Status] to "Pending HR Review"
If the date entered in the [More Info Requested Date] greater than or equal to the [HR Review Date] change the status to "More Info Needed"
and or if the date entered in the [HR Determination Date] is greater than or equal to the [HR Review Date] or the [More Info Requested Date] change the status to “Denied”
Formula: =IF(ISBLANK([HR Review Date]@row), "", IF([More Info Requested Date]@row >= [HR Review Date]@row, "More Info Needed", IF(AND([HR Determination Date]@row >= [HR Review Date]@row, [HR Determination Date]@row >= [More Info Requested Date]@row, NOT(ISBLANK([Denial Reason]@row))), "Denied", "Pending HR Review")))
Challenge: The formula is doing what I need it to do until I get to the denied piece. It wont update the status to denied unless a date is not entered into the More Info Requested Date Column. Please help. I need to the status to update rather a date is in the More Infor Requested Date column is blank or not.