display several calculated fields on a single form view

Kay Davies

New member
Local time
Today, 11:14
Joined
Sep 16, 2009
Messages
4
Hello everyone.

I am totalling 4 different columns, each in an individual query. Is it possible to show these results all on the same page of a form so that I don't have to run each query to see each result.

I hope this makes sense.

Many thanks. regards Kay :)
 
Would a DSum() work for you?
 
Have you tried combining all four fields (one from each query) into a single query (not linking them but just placing each calculated field into one query) and then use this new query as your forms record source?

One other way to do this would be to use VBA code to open each query as a recordset, retreive the desired calculation from each recordset and assign the extracted value to a control on your form.
 

Users who are viewing this thread

Back
Top Bottom