what can I do on the reporting side, not the sql, or the c# part of the problem?
my query returns four rows, grouped by the field payment_type, then puts the results into a datatable that's connected to my report in c#.
What can I do on the report side to pull a specific row out of the datatable where payment_type="Cash" without modifying any existing sql queries or creating any new datatables?
the solution should be limited to working with the report editor only. modifying the sql query itself or creating a new datatable with the a subset of the data in my controller class cannot be part of the solution.