Good morning. I know I'm missing a closing bracket somewhere but I can't figure out where. What I'm trying to do is show 1 - 4 wks out and then anything further show 5+ Wks out BUT… I need it to look at the due date UNLESS a NEW ETA is entered, then I need it to look there. Here's the formula I have thus far
IF(TODAY() > [Due Date]@row , "Late", IF([Due Date]@row = TODAY(), "Today", IF(WEEKNUMBER([Due Date]@row ) = WEEKNUMBER(TODAY()), "This Week", IF(WEEKNUMBER([Due Date]@row ) = WEEKNUMBER(TODAY()) + 1, "Next Week", IF(WEEKNUMBER([Due Date]@row ) = WEEKNUMBER(TODAY()) + 2, "2 Wks Out", IF(WEEKNUMBER([Due Date]@row ) = WEEKNUMBER(TODAY()) + 3, "3 Wks Out", IF(WEEKNUMBER([Due Date]@row ) = WEEKNUMBER(TODAY()) + 4, "4 Wks Out", "5+ Wks Out", IF([NEW ETA]@row <> "", IF(TODAY() > [NEW ETA]@row , "Late", IF([NEW ETA]@row = TODAY(), "Today", IF(WEEKNUMBER([NEW ETA]@row ) = WEEKNUMBER(TODAY()), "This Week", IF(WEEKNUMBER([NEW ETA]@row ) = WEEKNUMBER(TODAY()) + 1, "Next Week", IF(WEEKNUMBER([NEW ETA]@row ) = WEEKNUMBER(TODAY()) + 2, "2 Wks Out", IF(WEEKNUMBER([NEW ETA]@row ) = WEEKNUMBER(TODAY()) + 3, "3 Wks Out", IF(WEEKNUMBER([NEW ETA]@row ) = WEEKNUMBER(TODAY()) + 4, "4 Wks Out", "5+ Wks Out"))))))))))))))))