How to create a datagrid that contains only group summary

Looking for a little direction. I have a table that contains daily entries of employees and transactions during that day. One entry per day. Trying to figure out the best way to display a sum of the transactions within a date range. I have tried grouping with footer totals but all i want is a summary row for each employee, not a listing of the entries and them a summary. Looking to see if someone can point me in the right direction. Thanks for the help!

Hi @daveg1466,

Maybe you can perform the grouping before assigning the DataGrid Data. In this way you can prepare a collection of desired summaries only and later display them in the DataGrid.

Awesome, I will try that! Thank you!