silviosilver
New Member
- Joined
- Aug 12, 2015
- Messages
- 24
Column A keeps a running total of certain events, day by day (row by row). When an event occurs on a day, the total is incremented. Whether an event will occur or not on a given day is unpredictable. Therefore some rows retain the same value as earlier rows.
A
4
5
6
6
7
7
7
8
9
9
9
10
11
12
13
14
15
15
15
15
16
17
I would like to know how many rows ago today's total (17, in the example) minus 10 occurred. In this example, 7 occurs three times, but it is immaterial whether I find the first instance of 7 or the last.
Can this be done?
A
4
5
6
6
7
7
7
8
9
9
9
10
11
12
13
14
15
15
15
15
16
17
I would like to know how many rows ago today's total (17, in the example) minus 10 occurred. In this example, 7 occurs three times, but it is immaterial whether I find the first instance of 7 or the last.
Can this be done?
Last edited: