Adding up a column with an Exception
I need to add up a Column, ( see below, but I need to not count the "LOST" .
Current Formula: =COUNT(([Current Status]1:[Current Status]79))
Answers
-
The COUNTIFS function is a way to COUNT when there are criteria to take into account. COUNTIFS has the syntax: Range1, criteria1, range2, criteria2, range3, criteria3,etc. You can have as many or as little terms as you want, always entered as a range, criteria pair.
Try this
=COUNTIFS([Current Status]:[Current Status], NOT(CONTAINS("Lost", @cell)), [Current Status]:[Current Status], <>"")
I also entered criteria so that Current status wasn't blank.
Here's more information on the COUNTIFS function
cheers
Kelly
-
Thank you that helped.
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
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!