Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I add grouped columns?

Status
Not open for further replies.

cav101

Programmer
Dec 14, 2000
3
US
I have a report and I want to add/sum the columns that are in each group. Does anyone know how to do this?

Cav101
 
Under Sorting and Grouping. Click on the group level you want the sums for and make sure the footer property is set to yes. In the footer add an unbound textbox for each column you wish to total. In the controlsource property of each one put the following substituting the name of the control above it to be totalled:

=Sum([ControlName])
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top