Show Query Result In Textbox

Aussie60

Registered User.
Local time
Today, 20:33
Joined
May 1, 2011
Messages
41
Hi

Can someone tell me how to get the result of a query into a text box on the main form. The textbox is in the main form footer.

Can you please give me a step by step directions as I am not very experienced in Access 2003.

Any help would be appreciated
 
What is the data that the query is collecting, that you are trying to display?
 
The data from the query is a total $ Amount
 
In that case you should be able to simply set the Text Box Control Source as;
Code:
=Sum([FieldNameToTotal])
or even
Code:
=Sum([Units]*[UnitPrice])
 

Users who are viewing this thread

Back
Top Bottom