Hi,
I have a problem that I can't seem to wrap my head around maybe because it's monday or maybe it really is difficult?
I have a series of "events" (5000+) with random timestamps. I want to count how many events between every whole hour.
20180101010000
20180101011854
20180101013542
20180101015233
Count = 3
20180101020000
20180101021854
20180101024705
Count = 2
I want the resulting table to be like this
Time Count
20180101010000 3
20180101020000 2
Thanks!
/Jacob