Calculate Supplier Information
Hello,
I'm stuck with a formula...I am trying to calculate the number of suppliers with open complaints greater than 3. Any ideas?
Thanks,
Kelly
Best Answer
-
You would need to insert a helper column that has this column formula:
=IF(COUNTIFS([Supplier Name]:[Supplier Name], @cell = [Supplier Name]@row, [Request Status]:[Request Status], @cell = "Open") > 3, 1)
Then to get how many suppliers have more than 3 open you would use something like this:
=COUNT(DISTINCT(COLLECT([Supplier Name]:[Supplier Name], [Helper Column]:[Helper Column], @cell = 1)))
Answers
-
You would need to insert a helper column that has this column formula:
=IF(COUNTIFS([Supplier Name]:[Supplier Name], @cell = [Supplier Name]@row, [Request Status]:[Request Status], @cell = "Open") > 3, 1)
Then to get how many suppliers have more than 3 open you would use something like this:
=COUNT(DISTINCT(COLLECT([Supplier Name]:[Supplier Name], [Helper Column]:[Helper Column], @cell = 1)))
-
Thank you, Paul. Both Formulas helped greatly! Have a great day!
Thanks,
Kelly
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!