I had a simple 4 person approval process that looked to see if 4 people selected "Approved" it will make a cell as "All Approved" and send an alert.
Current Formula:
=IF(COUNTIF([Jim Approval-RD]@row:[Angela Approval-RD]@row, "Approved") = 4, "All Approved", IF(CONTAINS("Declined", [Jim Approval-RD]@row:[Angela Approval-RD]@row), "Request Declined", IF(CONTAINS("Pending", [Jim Approval-RD]@row:[Angela Approval-RD]@row), "Pending Approval")))
Now, I need away to look at the [AVG VP Approval-RD] column and if this is not blank I will need the 4 approvers, but if it is blank I will only need the 3. My approval process has evolved to only require the AVG VP when a user selects something in a form, but if that is not selected I will only need the 3 approvers.