Calculating % on-time vs late delivery
Hello,
I am trying to calculate the % of items we deliver on-time and % of items we deliver late. I have a column where I calculated the "average no. of days between due date and completion date" and a column for the team members name.
For % on-time deliveries, I think that I need to only grab the cells that have "average no. of days between due date and completion date" less than or equal to 0, for that team member. What would this formula look like?
And for % late deliveries, I think I just need to change the "less than 0" to "greater than 0".
Thanks!
Answers
-
Try this:
On Time Deliveries
=countifs([Average No. of Days Between Due Date and Completion Date],<=0,[Team Member Column],Team Member's Name)/countif([Team Member Column],Team Member's Name)
Late Deliveries
=countifs([Average No. of Days Between Due Date and Completion Date],>0,[Team Member Column],Team Member's Name)/countif([Team Member Column],Team Member's Name)
-
Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 449 Global Discussions
- 154 Industry Talk
- 504 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!