Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
75
Hide Non-Group by rows
posted

Sample Source:-

SessionName  PaymentMethod  Amount

Session-1        Cash                  100
Session-1        Cash                  70
Session-1        Cheque               50
Session-2        Cash                  500

I have created sorted columns for SessionName and PaymentMethod and created summary for Amount. customize the group by row description in the InitializeGroupByRow event.

Output:-

Amount  - Change to Session Name
**************************
- Session - 1
    - Method: Cash(2 items) Amount Paid = $170.00
 100.0000  - Need to hide
   70.0000  - Need to hide
    - Method: Cheque(1 item) Amount Paid = $50.00

- Session - 2
    - Method: Cash(1 item) Amount Paid = $500.00
 500.00  - Need to hide


1) I want to hide the summary record, since amount total displaying in the group description.
2) Column header need to display as "Session Name"

Thanks

Parents
No Data
Reply
  • 469350
    Offline posted

    satheesh_aaa said:
    1) I want to hide the summary record, since amount total displaying in the group description.

    If you want to hide the summaries so that they only display in the groupByRow and not after the data rows, then you could use the SummaryDisplayAreas property. You would set it to InGroupByRows.

    satheesh_aaa said:
    2) Column header need to display as "Session Name"

    Se the column.Header.Caption property.

     

Children