Hi All,
I am working on the below data. I want to get the count of Employee ID that is falling under same date and under same hour bucket. For example: A123 is coming 2 times on a particular date 06-05-2020 under the single bucket 14:00-15:00.
How can I get the desired counts by using Summarize tool or by using any other tool?
I tried using Summarize tool by grouping Date, Employee Id and Hour bucket and then taking count of Employee ID. But i am not getting the correct output. Kindly help.
| Employee ID | Date | Time | Hour Bucket | Count |
| A123 | 06-05-2020 | 14:01:23 | 14:00-15:00 | 2 |
| A123 | 06-05-2020 | 14:43:14 | 14:00-15:00 | 2 |
| B123 | 07-05-2020 | 13:07:56 | 13:00-14:00 | 1 |
| B123 | 08-05-2020 | 14:04:34 | 14:00-15:00 | 1 |
| B123 | 06-05-2020 | 10:00:06 | 10:00-11:00 | 1 |
| C123 | 06-05-2020 | 11:23:00 | 11:00-12:00 | 2 |
| A123 | 07-05-2020 | 08:43:32 | 8:00-9:00 | 1 |
| A123 | 06-05-2020 | 08:12:01 | 8:00-9:00 | 1 |
| C123 | 06-05-2020 | 11:56:00 | 11:00-12:00 | 2 |
Thanks in advance.