Forum Discussion
Cheryl4242
Jul 11, 2019Copper Contributor
COUNTIF to count cells with dates in them
It's so simple, but I can't make it work.... I have a column where a date will be entered for some cells. I just want to count the cells with dates in them. The other cells will be blank.
I've tried to use the * to count any value in a cell,=COUNTIF(G3:G20,"*") and that didn't work.
Is there some variation that will count date values? The column in question is formatted as "DATE".
Help.
- ehtisham_maverickCopper Contributor
This solution might come handy. I have written the formulas above. The DATEVALUE returns a number if a valid date is passed to it. However, it requires the date in Text format. Therefore, I had to join it with and emptry string using the & ampersand sign. So, if a valid date will be encountered then you get a number as a result. We can check if the result is a number or not by using ISNUMBER and get an array of TRUE and FALSE. TRUE for all dates and FALSE for any text, simple numbers and wrong dates. Then we can simply use COUNTIF(range, "TRUE") which will give the exact number of cells containing the dates. This will also take care of blank cells in between. We'll always get a FALSE for the blank cells.
I hope that helps and improves the solution.
- bobbydean01Copper Contributor
Hello and thanks for you post.
I want to reflect the value "1" in a separate cell for each time a date occurred in my date cell and the value "0" where it is blank. Ex: Dates = "1" and Blank = "0".
The goal is to then count the total of each date cells and show the difference in a separate cell.
I want make sure that it reflects each time the table is updated.
Thanks,
- tauqeeracmaSteel Contributor
- RRouxCopper Contributor
tauqeeracma Hello, I wanted to count say how many appointments someone had in a given month so trying =COUNTIF('Appointments’!O4:O2974,"=">"01/07/2023,<31/07/2023") I'm using the format the dates are in that range. It's returning 1 when there are many more there? Any help appreciated thanks.
- tauqeeracmaSteel Contributor
Hi RRoux
You can use COUNTIFS() function to achieve your requirements. Please refer to the attached sample file for more understanding.
Hope it will help you.
Thanks
Tauqeer
- Johnny557Copper Contributor
- Cheryl4242Copper Contributor
tauqeeracma THANK YOU SO MUCH! I didn't even know this was an option! Thank you!
COUNTA() is the best in this case, but if check non-blanks with COUNTIF/COUNTIFS it looks like
=COUNTIF(G3:G20,"<>")