I have made an access query which produces a series of fields, 2 of those fields are : 'SessionCounter' and 'TotalAmount'
What i need to do, is develop another query or modify this existing one so that, I could Sum all the 'TotalAmount', which has the same 'SessionCounter'.
Ex.
SessionCounter TotalAmount
1234 $5000
1234 $6000
2342 $7000
1234 $1000
So I need to add $5000 + $6000 + $1000 (they all have the same SessionCounter)
Note: they are both in the same resulting table.
How do i go about doing this? thanks!
What i need to do, is develop another query or modify this existing one so that, I could Sum all the 'TotalAmount', which has the same 'SessionCounter'.
Ex.
SessionCounter TotalAmount
1234 $5000
1234 $6000
2342 $7000
1234 $1000
So I need to add $5000 + $6000 + $1000 (they all have the same SessionCounter)
Note: they are both in the same resulting table.
How do i go about doing this? thanks!