I am trying to calculate a running sum in a query as listed below.
Amount RunningTotal
1 1
2 3
3 6
4 10
I have tried using DSum as follows, but it results in the RunningTotal calculation being 10 in each row.
RunningTotal: DSum(“[Amount]”,”tblData”)