brahmabull525
Programmer
I have a table in Access that has two fields, one called "ID" and the other called "SaleDate". The table (small sample) looks like this:
ID SaleDate
1 12/12/2004
1 12/15/2004
1 12/22/2004
1 12/31/2004
2 12/1/2004
2 12/9/2004
2 12/31/2004
Using this, I'd like to create a make table query that calculates a difference between rows, by ID. Based on the above, the resulting table would be:
ID Diff
1 3
1 7
1 9
2 8
2 22
I have no idea how this can be accomplished as described! Any and all help would be most appreciated.
Thanks!