I'm attempting to use the countifs() function, however, I keep returning a value of 0. This is the dataset:
| A | B | C |
| item1| 3/3/14| 12:00:15 AM|
| item2| 3/3/14| 12:00:39 AM|
| item4| 3/3/14| 12:05:19 AM|
| item1| 3/3/14| 12:05:19 AM|
I tried the following countifs() to count all the items that fit this criteria:
=countifs(A:A,"item1",B:B,"3/3/14",C:C,"12:*")
So I want this function to grab "item1" in column A, 3/3/14 in B, and anything that starts with "12:". So this should return a value of 2, but it's not. Any ideas?
General
then use the value the cell displays in yourCountifs
. – L42