Urgent Help Needed! - Percentage Won Formula with Checkboxes
We are trying to calculate our win percentage by using a formula that calculated values from two different checkbox columns. #won/#lost+#won.
We have tried several formulas but have come up empty.
The following formula worked but it did not calculate the correct percentage and we would rather calculate the percentage by checkbox columns instead of date columns.
=COUNT(([Date Lost]:[Date Lost]) + COUNT([Date Won]:[Date Won])) / COUNT([Date Won]:[Date Won])
Answers
-
Hi Amy,
Try this:
=(COUNTIF(Won:Won,1))/(COUNTIF(Won:Won,1) + COUNTIF(Lost:Lost,1)
Let me know if it works!
Best,
Heather
-
Hi Amy,
I recommend using the COUNTIF formula if you want to count by the check boxes. Perhaps this will work for you:
=COUNTIF(Won:Won, true) / (COUNTIF(Lost:Lost, true) + COUNTIF(Won:Won, true))
Best,
Adam
-
Hi, Amy. I think (?) I am following what you're doing here, and my best guess is that you need a COUNTIF (which will count only cells that meet a condition - e.g., box is checked) instead of COUNT (which counts all populated cells in the range).
Try this:
=COUNTIF(Won:Won, 1) / COUNT(Deal:Deal)
Where "Deal" is the name of the column on your sheet that uniquely identifies each deal (maybe [Client Name/Institution])
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!