M
Melinda
I am trying to calculate a running sum for the following table with the 3
fields listed below:
tblFullDataTable
ID
InvcDate
NetTotal
I have a query written, but I keep getting an #Error message when I run the
query. The ID, InvcDate, and NetTotal appear, but in the "Running Sum"
field, it's all errors. Can someone please help me?
Thanks.
Melinda
SELECT tblFullDataTable.ID, tblFullDataTable.InvcDate,
tblFullDataTable.NetTotal, DSUM("NetTotal","tblFullDataTable","ID='" & [ID] &
"' AND InvcDate<=#" & [InvcDate] & "#") AS RunningTotal
FROM tblFullDataTable;
fields listed below:
tblFullDataTable
ID
InvcDate
NetTotal
I have a query written, but I keep getting an #Error message when I run the
query. The ID, InvcDate, and NetTotal appear, but in the "Running Sum"
field, it's all errors. Can someone please help me?
Thanks.
Melinda
SELECT tblFullDataTable.ID, tblFullDataTable.InvcDate,
tblFullDataTable.NetTotal, DSUM("NetTotal","tblFullDataTable","ID='" & [ID] &
"' AND InvcDate<=#" & [InvcDate] & "#") AS RunningTotal
FROM tblFullDataTable;