Click here to Skip to main content
15,909,039 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
sir, my report are now look like :-

ID - Amount
1 - 250
1 - 555
1 - 350
2 - 666
2 - 100

but i want to show my data look like :-

ID - Amount - Total
1 - 250 - 1155
555
350
2 - 666 - 766
100

What I have tried:

i have done all. only need to show my data look like that.
Posted

1 solution

Within your Report do as follows;
a) Add a Group to the Report - Group by your ID
b) Add a Formula field that Sums the Amounts by your ID - the formula should look like below
C#
Sum({TableName.Amount},{TableName.ID})

c) Add your Formula field to the Group Header - position the field to the right of your Amount field
d) Open Section Expert and select the Group Header
e) Select the option "Underlay following sections"

Kind Regards
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900