c# - SUM of the details in group header Crystal reports -
i generating crystal report in asp.net/c# website. require groupwise sum in header of group, when add sum field (running total field) shows first entry of records there way show total of records in details in header of same group?
running totals won't work in group header section because of way evaluated. instead, use regular summary function , place in group header. can either right-clicking field summarize, selecting "insert", , "summary" or creating formula:
sum({table.field_to_summarize},{table.field_you_are_grouping_on})
Comments
Post a Comment