Formula Help - Count If (percentage complete)
I'm looking help on a formula to find the "Percent Finished", in row 1 column 1, by counting the total number of "Test Status" entries of: "Completed, Previously Enrolled, Enrollment Not Needed, Client Did Not Approve" and Dividing it by the count of "SAP ID"s.
Thanks!
Mary F
Best Answer
-
Hi @Mary Farmer
Looks like you're just missing closing off that OR statement before you use the / operator!
Here's the structure of all the parentheses:
=COUNTIFS(xxx, OR(xxx)) / COUNT(xxx)
Try:
=COUNTIFS([Test Status]:[Test Status], OR(@cell = "Completed", @cell = "Previously Enrolled", @cell = "Enrollment Not Needed", @cell = "Client Did Not Approve")) / COUNT([SAP ID]:[SAP ID])
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Answers
-
Try this...
=COUNTIFS([Test Status]:[Test Status], OR(@cell = "Completed", @cell = "Previously Enrolled", @cell = "Enrollment Not Needed", @cell = "Client Did Not Approve") / COUNT([SAP ID]:[SAP ID])
-
I typed this one in & got an #UNPARSEABLE error:
=COUNTIFS([Test Status]:[Test Status], OR((@cell = "Completed", @cell = "Previously Enrolled", @cell = "Enrollment Not Needed", @cell = "Client Did Not Approve") / COUNT([SAP ID]:[SAP ID])
I pasted this one in & got an #INVALID OPERATION error:
=COUNTIFS([Test Status]:[Test Status], OR(@cell = "Completed", @cell = "Previously Enrolled", @cell = "Enrollment Not Needed", @cell = "Client Did Not Approve") / COUNT([SAP ID]:[SAP ID]))
Thoughts?
Thanks,
Mary
-
Hi @Mary Farmer
Looks like you're just missing closing off that OR statement before you use the / operator!
Here's the structure of all the parentheses:
=COUNTIFS(xxx, OR(xxx)) / COUNT(xxx)
Try:
=COUNTIFS([Test Status]:[Test Status], OR(@cell = "Completed", @cell = "Previously Enrolled", @cell = "Enrollment Not Needed", @cell = "Client Did Not Approve")) / COUNT([SAP ID]:[SAP ID])
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 464 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!