我有一个表tblBudget,其中包含
ID ExpenseType年月金额
11硬件2017年9月5000日
11软件2017年10月2000年
11硬件2016年1月1000日
12软件2017年2月1500日
我需要按ID,费用类型,年份,月份显示费用。因此,我按查询
创建了一个组Select id,ExpenseType,year,Month,sum (Amount) as sumOfAmount
from tblBudget
Group by ID,ExpenseType,Year,Month
此查询工作正常,但我需要在屏幕底部总计总金额。
在访问表单上,我尝试将控件源设置为“= sum([Amount])”但是它给了我一个#error。我想这是因为我的数据表中已有金额的总和。有没有办法在表单的页脚中获得总计