I have a report that displays the following data:
- Quantity
- Line Item Total/Extended Price (this is based off of a formula of rate * quantity)
- Product Type (i.e. Type A, B, C, D, & Other)
At the bottom of the report, I would like to add a small three column table that takes the total quantity and price by the product type.
The table will only ever have 5 rows - row 1 = Type A, etc. Columns will be "Qty" and "Total" which should represent the sum of each based on the type.
I am struggling getting a RunningValue formula to work with a IIF statement that would filter based on type.
Here is what I have tried in cell A1 of the table (to display qty total for type a only):
=IIf(Fields!type.Value="A",RunningValue(Fields!quantity.Value, Sum, Nothing)

