I am stuck on a nested if formula. I have 2 columns that set 1 of 3 statuses in a 4th column, here is the basic break down if "APPR'VD BY ARCH'T" is blank, display Awarded in "Project Ordering Status" column, if "APPR'VD BY ARCH'T" is a date, display ABA in "Project Ordering Status" column. Here is the formula that I have in "Project Ordering Status" column-
=IF(ISDATE([APPR'VD BY ARCH'T]@row), "ABA", IF(ISBLANK([APPR'VD BY ARCH'T]@row), "AWARDED", ""))
the part where I get stuck is, I want to add IF(ISDATE) for a separate column, "FAB RLS DATE" is a date, display RFF in Project Ordering Status column.
the linear process goes Awarded, ABA, then RFF. If there is a date in "FAB RLS DATE" column = RFF Project Ordering column
Please help