Formula to count blank cell isn sheet summary
Hi -
I have countif formulas in my sheet summary that return number of rows in column with a value of "X."
I want to count the number of rows that are blank, that have no value in the cell, and can't figure out the syntax to do that.
Formula being used for counting values is
=COUNTIF([Reim Status]:[Reim Status], "Assigned")
Thanks.
Answers
-
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
=COUNTIF([Reim Status]:[Reim Status], isblank(@cell))
That should work, but if it's counting the blank rows at the bottom of the sheet, consider using CountIFS and adding a column that always has a value
=COUNTIFS([Reim Status]:[Reim Status], ISBLANK(@cell), [Other Column]:[Other Column], <>"")
-
Thanks Mark -
That formula at least returned a value! Problem is it is returning a value of 40.
I only have 13 rows and only three have "Reim Status" as blank so I am unlcear what SS is counting.
-
Thanks Mark, deleting the empty rows did the trick!
Tanya
-
Tanya, As @MCorbin suggested, to get a more reliable answer it would be best to add a range to the COUNTIFS statement that always has a value. Otherwise it will continue to count completely blank rows. You;re using COUNTIFS, so just add a range and criteria like MCorbin's:
=COUNTIFS([Reim Status]:[Reim Status], ISBLANK(@cell)=1, [column that always has a value]:[column that always has a value], <>"")
Glad we could help.
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!