数,其中包含
How do I create a formula that COUNTS all the submissions that CONTAIN (using the Facility column):
COUNT all that CONTAIN = DFW then provide a total count for just DFW
COUNT all that CONTAIN = EP then provide a total count for just EP
COUNT all that CONTAIN = LV then provide a total count for just LV
COUNT all that CONTAIN = OK then provide a total count for just OK
COUNT all that CONTAIN = PA then provide a total count for just PA
COUNT all that CONTAIN = SA then provide a total count for just SA
COUNT all that CONTAIN = WI then provide a total count for just WI
I want to use this on a separate SHEET for a Dashboard quick count check.
Best Answer
-
Intern98 ✭✭✭
=COUNTIF([Column Name]:[Column Name], CONTAINS("DFW",[cell]@row))
Answers
-
Sameer Karkhanis ✭✭✭✭✭✭
Try this:
=COUNTIF([Column Name]:[Column Name], CONTAINS("DFW",@cell)) to get all that contain DFW and just repeat the formula replacing the DFW with others.
-
HardWork ✭
Hi Sameer,
This is what I put together based on your suggestion (thank you for the assistance):
but I get the #UNPARSEABLE error message. Am I missing a () somewhere?
-
Intern98 ✭✭✭
=COUNTIF([Column Name]:[Column Name], CONTAINS("DFW",[cell]@row))
-
Andrée Starå ✭✭✭✭✭✭
I hope you're well and safe!
Try something like this.
=COUNTIF({QA LEAD EVALUATION (WITH FORM) Range 1}, CONTAINS ("DFW", @cell)
Did that work/help?
I hope that helps!
Be safe and have a fantastic week!
Best,
Andrée Starå| Workflow Consultant / CEO @WORK BOLD
✅Did my post(s) help or answer your question or solve your problem? Please support the Community bymarking it Insightful/Vote Up or/and as the accepted answer. It will make it easier for others to find a solution or help to answer!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå| Workflow Consultant / CEO @WORK BOLD
W:www.workbold.com| E:[email protected]| P: +46 (0) - 72 - 510 99 35
Feel free to contact me about help with Smartsheet, integrations, general workflow advice, or something else entirely.
-
HardWork ✭
That one worked. Thank you very much for your assistance!
Help Article Resources
Categories
Check out theFormula Handbook template!
I guess you forget to use AND( ).<\/p>
For example, <\/p>
- IF([Total Value to User Score]@row = <3.8, >4.7, \"Mild,<\/li><\/ul>
should be<\/p>
- IF(AND(<\/strong>[Total Value to User Score]@row < 3.8, [Total Value to User Score]@row > 4.7)<\/strong>, \"Mild\",<\/li><\/ul>
However, the following would be more straightforward.<\/p>
- =IF([Total Value to User Score]@row >= 4.8, \"No Pain\", <\/li>
- IF([Total Value to User Score]@row >= 3.8, \"Mild\", <\/li>
- IF([Total Value to User Score]@row >= 2.8, \"Moderate\", <\/li>
- IF([Total Value to User Score]@row >= 1.8, \"Very Severe\", <\/li>
- IF([Total Value to User Score]@row < 1.8, \"Extreme\", \"//m.santa-greenland.com/community/discussion/89434/\")))))<\/li><\/ul>
- IF(AND(<\/strong>[Total Value to User Score]@row < 3.8, [Total Value to User Score]@row > 4.7)<\/strong>, \"Mild\",<\/li><\/ul>