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.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 468 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 64 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!