Hi
I asked in this forum previously how to count how many events has happened in every day. I got an answer which solves it almoust. But I still haven't solve my problem. So I have a table which looks like this
[start time] [end time] [device ip]
11.12 10:10 11.12 10:11 111
11.12 10:10 11.12 10:13 113
12.12 12:33 12.12 12:34 222
..
So you help me to make query. I make query like this:
SELECT (DateValue(Table.[start time])) AS date, Count(Table.[device ip]) AS events
FROM Table
GROUP BY Table.[start time], Table.[device ip];
And this query make this kind of table
date events
11.12 1
11.12 1
12.12 3
But I want to make query which calculates faults togethet which has happened in same day. Like this:
date events
11.12 2
12.12 3
So how I have change my query or do I have to make another query? Or do I have to make somekind of WHERE statement?