Here's the scoop:
I have an Excel Workbook with 5 years worth of pick-3 lottery data arranged in 4 columns: date (A4), pos 1 digit (B4), pos 2 digit (C4), pos 3 digit (D4).
I'd like to build a table that would show how many drawings it's been since each digit has been draw in each position. For example:
__|_1 pos_______|_2 pos_______|_3 pos_____
0 | #draws | #draws | #draws
1
2
3
4
5
6
7
8
9
The table should report the number of draws since last draw. So, if a number in a given position was drawn today, the table would report the number of draws as 0. If the number 8 as the first digit was drawn 3 days ago, the table would report a 3 in that cell.
I have an Excel Workbook with 5 years worth of pick-3 lottery data arranged in 4 columns: date (A4), pos 1 digit (B4), pos 2 digit (C4), pos 3 digit (D4).
I'd like to build a table that would show how many drawings it's been since each digit has been draw in each position. For example:
__|_1 pos_______|_2 pos_______|_3 pos_____
0 | #draws | #draws | #draws
1
2
3
4
5
6
7
8
9
The table should report the number of draws since last draw. So, if a number in a given position was drawn today, the table would report the number of draws as 0. If the number 8 as the first digit was drawn 3 days ago, the table would report a 3 in that cell.