Reputation: 103
I have a call log exported from my phone, and I want to graph number of calls per day and do some other analytics, because of how its exported, I have a list of calls with a Datetime (see below), my first thought was a =COUNTIF(C:C, "01/09/2018") for each date I need, but something to do with how excel formats dates doesn't like it, even if I convert the Datetime to plain text, any suggestions?
Upvotes: 0
Views: 54
Reputation: 50144
Use COUNTIFS
and make sure your day column contains actual dates.
=COUNTIFS(D:D,">="&G2,D:D,"<"&G2+1)
Upvotes: 2