I have 2 statements I m trying to combine to answer the question: Is an Extension Required?
=IF([Extended Due Date]@row > [Due Date]@row, "Yes", "No")
=IF(AND([Due Date]@row < TODAY(), [Extended Due Date]@row = "N/A"), "Yes", "No")
Both statements work, but I need them combined.
Please help