Hi,
I am creating a report and this maybe a simple question to answer.
I have a column name "Amount" which picks the first value of the Item ID.
I want to add the sum of the Amount of the displayed first value.
The report is Query based.
Actual table:
Item Id | Amount |
ABC | 78.00 |
DEF | 98.00 |
TOTAL | 1136.00 |
Total: 1136.00 is taking the sum of all the values of the ItemID: ABC: total amount: 345.00 and ItemId: DEF: total amount: 791.00 (345.00+791.00=1136.00)
Whereas I want:
ItemId | Amount |
ABC | 78.00 |
DEF | 98.00 |
TOTAL | 176.00 |
For Amount, the expression is "=First(Fields!Amount.Value)
For Total, I am using the expression as "=Sum(Fields!Amount.Value)
And it grouped by : ItemID