hi - I have a loop that generates a large series of query results. Here are three typical outputs. I have added spaces to line up equal values of ID:
I want to use an UPDATE query to keep a running sum vaules of Freq each time the query is run. the final output for the three query results above would be:
Code:
ID Freq ID Freq ID Freq etc...
51 6 51 2
53 18
55 3 55 67 55 19
56 12 56 346
59 211 59 45 59 129
60 99 60 17 60 29
63 11 63 4
I want to use an UPDATE query to keep a running sum vaules of Freq each time the query is run. the final output for the three query results above would be:
Code:
ID Freq
51 8
53 18
55 89
56 358
59 385
60 145
63 15
{/code]
could somebody show me how to handle the summing in the Freq column.
thanks