A
Access::Student
Hey, I've got a continuous form and I'm trying to get some totals correctly.
In each row of my "table" I have these two values:
=DLookUp("[grand_total_requested]","Submissions Totals","kf_submissions_id="
& [kp_submissions_id])
=DLookUp("[grand_total_approved]","Submissions Totals","kf_submissions_id="
& [kp_submissions_id])
So they are basically the same. Submission Totals is a query that finds the
total of another query which is based on a table.
Those two values work, but I'm trying to total them up and I can't figure
out how. If I just 'Sum()' the controls (named [requested] and [accepted] and
do not conflict with any other names) I get an error, which I think is
supposed to happen(because they don't get stored?). But I also can't put
those previous expressions in sums because that would make no sense. Any help
on what I should do?
In each row of my "table" I have these two values:
=DLookUp("[grand_total_requested]","Submissions Totals","kf_submissions_id="
& [kp_submissions_id])
=DLookUp("[grand_total_approved]","Submissions Totals","kf_submissions_id="
& [kp_submissions_id])
So they are basically the same. Submission Totals is a query that finds the
total of another query which is based on a table.
Those two values work, but I'm trying to total them up and I can't figure
out how. If I just 'Sum()' the controls (named [requested] and [accepted] and
do not conflict with any other names) I get an error, which I think is
supposed to happen(because they don't get stored?). But I also can't put
those previous expressions in sums because that would make no sense. Any help
on what I should do?