Approval Status formula with either 3 of 3 Approvals or 1 of 3 Approvals
I am wondering if its possible to have an Approval Status for different groups of Approvers. Details below
-Approvers 1-3 will require all 3 approvers, change status to "Ready to Create"
-Approvers 4-6 will require 1 approver, change status to "Ready to Create"
-If any 6 Deny the request, change status to "Denied"
I've been trying a few different IF statements, but I'm stumped.
Any help would be appreciated!
Best Answer
-
Try something like this...
=IF(COUNTIFS([Approval1]@row:[Approval6]@row, @cell = "Denied")> 0, "Denied", IF(OR(COUNTIFS([Approval1]@row:[Approval3]@row, @cell = "Approved") = 3, COUNTIFS([Approval4]@row:[Approval6]@row, @cell = "Approved")> 0), "Ready To Create", "Pending"))
Answers
-
Try something like this...
=IF(COUNTIFS([Approval1]@row:[Approval6]@row, @cell = "Denied")> 0, "Denied", IF(OR(COUNTIFS([Approval1]@row:[Approval3]@row, @cell = "Approved") = 3, COUNTIFS([Approval4]@row:[Approval6]@row, @cell = "Approved")> 0), "Ready To Create", "Pending"))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!