0

Kindly help me with the following query, i have my a table as below,

PID   ID Date              Value  Weight
1     1  01-01-2014        10       0.5
2     1  01-01-2014        20       0.5
3     1  01-01-2014        30       0.5
4     1  02-01-2014        10       0.5
5     1  02-01-2014        10       0.5
6     1  02-01-2014        10       0.5
and i want the out put as, using SSRS
 ID  Date               SUM_PROD
 1  01-01-2014        30
 1  02-01-2014        15
ekad
  • 14,436
  • 26
  • 44
  • 46

1 Answers1

0

You can use group properties in your tablix.

enter image description here

Then in Group properties window,

enter image description here

Then simply display your field in your tablix like,

enter image description here

Aditya
  • 2,299
  • 5
  • 32
  • 54