how will i show up the total sum

accs

New member
Local time
Yesterday, 19:20
Joined
Aug 26, 2014
Messages
9
i have a query that has a total sum , my problem is when i create form all the fields in the query is visible in the form but my total sum doesnt show up, but when i view it in query it works properly.


i dont really know what the symbol really is called i just called it total sum
, the E icon in query

thanks really appreciate your help
 
Did you open the Form in the Design view and use the "Add Existing Fields" menu to add the field that is missing?
 
it wasnt showing up.

this is the icon i was talking about i use to total the row filed eicon.png

in the design view query it is there but in form i dont know how will the running
total sum shows up

thanks for repz,really appreciate the help
 
this is the total i want to appear in form


123.png






thanks , really appreciate the help
 
AFAIK that grand total value is not available to the form directly from the query.

Add a textbox to the footer of the form and use a ControlSource like:

= Sum([thefieldname])
 
You can see the totals if you in normal Form view, in access 2007 + , press the Totals icon on the ribbon in the Records section.
 
this solves my problem

= Sum([thefieldname])

it is now appreaing in my form


thanks for the repz.

but i have a new problem. i use this same procedure in report
but it doesnt shows up in report view

im getting

error: #error
 
i was able to make it appear in report thanks to all who help me



= Sum([Field1]) works]



thnks a lot
 

Users who are viewing this thread

Back
Top Bottom