I feel like the formula below should function to remove the timestamp off of the cell in created at the same row as the function, then count all cells in the created column in which the days are the same.
=countifs(created:created,dateonly(created@row))
Currently this formula counts when the date AND time match. In fact, when trying to force it to go through with
=countifs(created:created,date(year(created@row),month(created@row),day(created@row)))
it still only returns the values when the date AND time match.
Does anyone have a reason why either of these shouldn't work? Is this expected behavior or a glitch?