Percentage based on "Complete"
Hello! I have a column labeled "Line Status" with many different statuses. One status is "complete" and I would like to produce a percentage based on the # of times complete exists compared to the number of lines with any status at all. Each line is a step in our process, and as we mark each line complete I would like it to show what percentage of all lines are complete - Thank you for any help!
Answers
-
I would do something like this:
=countif([Line Status]:[Line Status],"Complete") / countif([Line Status]:[Line Status],<>"")
Basically counting all completes and dividing it by all non-blank cells in the column.
-
Excellent! That worked very well - could I add another step? We would like "Ready to ship", "shipped", and "Complete" combined to represent % of project complete divided by total cells with any value in them - ?
-
I think I figured it out - does this look right?
=(COUNTIFS([Line Status]:[Line Status], "Ready To ship") + COUNTIFS([Line Status]:[Line Status], "Complete") + COUNTIFS([Line Status]:[Line Status], "Shipped")) / COUNTIF([Line Status]:[Line Status], <>"")
-
Hey @Cory Larsen
Just jumping in here to say that looks great! Well-done 🙂
Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!