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
- 66.9K Get Help
- 441 Global Discussions
- 153 Industry Talk
- 501 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 79 Community Job Board
- 511 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!