Hello,
Let's say I have a table with two columns defined as following:
ITEMS ON HAND
=Sum(Fields.transaction_units)
STOCK VALUE
=Fields.item_unit_cost * Sum(Fields.transaction_units)
What I want is to sum stock value in the table footer. I tried
=Sum(Fields.item_unit_cost * Sum(Fields.transaction_units))
but nested aggregates are not allowed. This is a quite common scenario, so I suppose that there is a simple way to achieve it?
Thanks
Let's say I have a table with two columns defined as following:
ITEMS ON HAND
=Sum(Fields.transaction_units)
STOCK VALUE
=Fields.item_unit_cost * Sum(Fields.transaction_units)
What I want is to sum stock value in the table footer. I tried
=Sum(Fields.item_unit_cost * Sum(Fields.transaction_units))
but nested aggregates are not allowed. This is a quite common scenario, so I suppose that there is a simple way to achieve it?
Thanks