I have this successfully working column formula in Overall Approval Status:
=IF(COUNTIF([Approval - Kashif]@row:[Approval - Adam]@row, "Declined") > 0, "Declined", IF(COUNTIF([Approval - Kashif]@row:[Approval - Adam]@row, "Approved") > 0, "Approved", IF([TEAM A - Approval Requested]@row = 1, "Submitted", "")))
From AI: The formula checks for 'Declined' in the approval columns from Kashif to Adam. If found, it returns 'Declined'. If not, it checks for 'Approved' and returns 'Approved'. If neither, it checks if 'TEAM A - Approval Requested' is checked and returns 'Submitted'. Otherwise, it returns an empty string.
I need to update this formula to return "Submitted" in the Overall Approval Status column until all cells with 'Submitted' have been changed.