G
Guest
Is it possible to create a total at the bottom of a data page (not report)?
Also, I am trying the following Running total and get #Error. I would
appreciate the help.
SELECT CurrentMonth.invoicenumber AS InvAlias, Sum(CurrentMonth.GP_Dollars)
AS SumOfGP_Dollars,
Format(DSum("GP_Dollars","CurrentMonth","[invoicenumber]<=" & [InvAlias] &
""),"$0,000.00") AS RunTot
FROM CurrentMonth
GROUP BY CurrentMonth.invoicenumber;
Also, I am trying the following Running total and get #Error. I would
appreciate the help.
SELECT CurrentMonth.invoicenumber AS InvAlias, Sum(CurrentMonth.GP_Dollars)
AS SumOfGP_Dollars,
Format(DSum("GP_Dollars","CurrentMonth","[invoicenumber]<=" & [InvAlias] &
""),"$0,000.00") AS RunTot
FROM CurrentMonth
GROUP BY CurrentMonth.invoicenumber;