0

I need to get SUM for TOP 10 rows only by counting unique claim numbers. Not for the whole dataset.

for that in a group properties I set Filter with expression:

enter image description here

But the total sum reflected for the whole dataset, not for top 10.

I tried using RunningValue finction, but no success:

https://mkncreations.com/site/2012/05/filter-top-n-group-totals/

enter image description here

What would be the way to capture sum for only top 10 rows?

Serdia
  • 4,242
  • 22
  • 86
  • 159

1 Answers1

0
  1. Create row inside the group 2.Enter expression referencing dataset name (not group name):

    =RunningValue(Fields!IdemnityReserves.Value,SUM,"UnitedSpecialty")

  2. Make this row invisible

  3. Add total row
  4. Enter expression in total row referencing cell created in step 2:

    =reportitems!Textbox288.Value

Serdia
  • 4,242
  • 22
  • 86
  • 159