Report, grouped, to total number of records in that group?

  • Thread starter Thread starter Guest
  • Start date Start date
In the group's footer or header, place a textbox with this as controlsource:
Count(someFieldInSection)

Barry
 
Do i need to use a formula of any sort?

Barry Gilbert said:
In the group's footer or header, place a textbox with this as controlsource:
Count(someFieldInSection)

Barry
 
hornywithab said:
Please get back if need more info!


Please explain what you are trying to accomplish in more
detail.

If all you want is to total a the values in a field in the
detail section, then use a text box (in the group footer
section) with an expression like =Sum([name of field])
 
I think Barry meant...
= Count(somefield)
The equal sign makes the text control an unbound calculated field.
 
Back
Top