I have next table (growing each day). In each date/time moment (row), I have some event which may be repeated within one day (or not). Problem is ID column: I am entering IDs values manually and making mistakes of course. How to make some kind of automation:
a) within one day (date),
b) within several days.
VBA or worksheet formula(s)... never mind. Thanks in advance.
P. S.
So far, the only my idea is to filter table per each date, re-sort table by Data and create IDs by comparission previous and next data. But maybe there are some more ellegant way... some indexes, matches, coffees... dunno.
a) within one day (date),
b) within several days.
VBA or worksheet formula(s)... never mind. Thanks in advance.
P. S.
So far, the only my idea is to filter table per each date, re-sort table by Data and create IDs by comparission previous and next data. But maybe there are some more ellegant way... some indexes, matches, coffees... dunno.
ID | Date/Time | Data |
---|---|---|
1 | 7/1/21 5:07 AM | A |
2 | 7/1/21 5:09 AM | B |
2 | 7/1/21 5:25 AM | B |
3 | 7/1/21 5:30 AM | C |
2 | 7/1/21 9:14 AM | B |
1 | 7/1/21 9:27 AM | A |
1 | 7/1/21 10:35 AM | A |
4 | 7/2/21 11:40 AM | CC |
4 | 7/2/21 11:49 AM | CC |
5 | 7/2/21 12:12 PM | AA |
5 | 7/2/21 12:17 PM | AA |
6 | 7/2/21 6:00 PM | BB |
7 | 7/2/21 6:02 PM | DD |
4 | 7/2/21 6:05 PM | CC |
5 | 7/2/21 6:21 PM | AA |
6 | 7/2/21 6:29 PM | BB |
8 | 7/3/21 12:01 AM | FFF |
9 | 7/3/21 12:18 AM | GGG |
10 | 7/3/21 11:32 AM | HHH |
11 | 7/3/21 11:36 AM | III |
10 | 7/3/21 12:04 PM | HHH |
12 | 7/3/21 1:01 PM | FFF |
13 | 7/3/21 1:35 PM | AAA |
9 | 7/3/21 1:44 PM | GGG |
14 | 7/3/21 3:58 PM | JJJ |