Hi, is it possible to count in a column, if I have check box and also N/A ?
I need to count every cell that has a check in the box or the N/A.
Thank you !
Try this - just change the column name for yours:
=COUNTIF(CheckBox:CheckBox, OR(@cell = 1, @cell = "N/A"))
Thanks ! I will try it now
Not working...
Hmm. Can you share a screen shot of the column with the column name? It worked when I tested it. Sometimes copying/pasting a formula from here fails, better to type it out.
My formula was working before they decided to add the n/a....
I've tried your formula in both colums
Make sure you bracket your column name in the formula if you have spaces in there. It appears you do. I've adjusted mine.
=COUNTIF([Check Box]:[Check Box], OR(@cell = 1, @cell = "N/A"))
Otherwise, I am happy to look at a copy of the sheet if you want to share it.
Also - Are you doing the formula in the Top/2nd row rather than an adjacent column. That may be the issue with my formula since its looking at the entire column. Adjust the Range if that's the case.
Example
=COUNTIF([Check Box]2:[Check Box]100, OR(@cell = 1, @cell = "N/A"))
Yes i've added a column for the formula
Ok l'll try it again.
Thank you so much !
D
It worked !!!!! I just had a space to remove !!!!
=COUNTIF([Doc 1B ]:[Doc 1B ]; OR(@cell = 1; @cell = "n/a"))
Thank you again !
Perfect!
I have a similar request, but I want to count any text in a row, not a specific word or phrase. For example, each row may have a different "comment" in a cell. Is there a way to make a formula that counts the checkbox, if checked, and also count if there is text in a cell.
Current formula is set up to count anything in that row, that is labeled "C" (for critical) when the checkbox is checked.
=IF(Critical@row = "C", COUNTIFS(Carleen75:Janet75, 1))
But when we have text in that row, it doesn't count it.
I want to push the latest status log sheet entry to the dashboard. I have added working columns for the last date, recent value (0 or 1) and recent status (text field). The recent columns are blank except for the most recent data rows (that part of the sheet is working). I have a project metric sheet template across topics…
Hi - I am trying to figure out how to create a SUM of the Total Project Time aligned to each PM for all of their projects. On my master sheet I have the Resource Type, Resource Name, and a Helper Column for Time. The Helper Time is an estimated allotted time based on the timeframe of the project. Example: <3 months = 25…
I am looking to count how many letters we have issued within each month, this is by going by the modified date, these are the formulas i have tried as i want to start this from August: =COUNTIFS(Modified:Modified, MONTH(@cell ) = 8, Modified:Modified, YEAR(@cell ) = 2025) However, it comes up with an error. Any ideas…