Counting blank values in one cell but only if a non blank value exists in another cell
Good afternoon,
I'm trying to create a sheet summary formula that counts the number of blank values for a cell, but only if there's an entry in the sheet because my original sheet summary was counting blank values when there wasn't an entry in the sheet. I've reviewed several posts and tried a couple of different formulas but I'm getting the unparseable error. Below are the two formulas I've tried; they're basically the same except for the IF vs IFS with Count.
Any help would be greatly appreciated.
=COUNTIF(isblank([Smartsheet Contact #]:[Smartsheet Contact #], "", [Student Pre-Qualified for BOLD?]:[Student Pre-Qualified for BOLD?] ISBLANK(@cell))
=COUNTIFS(isblank([Smartsheet Contact
#]:[Smartsheet Contact #], "", [Student Pre-Qualified for
BOLD?]:[Student Pre-Qualified for BOLD?] ISBLANK(@cell))
Thank you,
Nancy
Best Answer
-
I just deleted some data in one of my sheets and used:
Using a helper column:
=COUNTIF(Date@row, "")
It seems to count the blank values but stops at the very last row that doesn't have data? Maybe this is not what you're looking for but I figured I would post just in case.
Then you would just sum that helper column.
If you dont want a helper column you could do this
=SUM(Date:Date, COUNTIFS(Date:Date, "", [Primary Column]:[Primary Column], <>""))
Using the countifs statement will let you add a second criteria in this case I picked the primary column thinking there should always be data. But you can pick whatever column always has data for the 2nd criteria.
Hope this helps.
Answers
-
I just deleted some data in one of my sheets and used:
Using a helper column:
=COUNTIF(Date@row, "")
It seems to count the blank values but stops at the very last row that doesn't have data? Maybe this is not what you're looking for but I figured I would post just in case.
Then you would just sum that helper column.
If you dont want a helper column you could do this
=SUM(Date:Date, COUNTIFS(Date:Date, "", [Primary Column]:[Primary Column], <>""))
Using the countifs statement will let you add a second criteria in this case I picked the primary column thinking there should always be data. But you can pick whatever column always has data for the 2nd criteria.
Hope this helps.
-
Hi Cory,
That worked. Thank you so much!
Have a great day,
Nancy
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!