Reputation: 83
I think the issue is fairly simple but I can't manage to get to the result.
I would like to aggregate the result for each store, but keeping in the report all the rows, including the Client and Purchase ones:
Store | Client | Purchase | DesiredColumn |
---|---|---|---|
Store1 | Client1 | 20 | 50 |
Store1 | Client2 | 30 | 50 |
Store2 | Client3 | 100 | 600 |
Store2 | Client4 | 500 | 600 |
I tried something along the lines of Sum and ForEach(Store), but it returns the same exact values for "Purchase".
Does someone know if this is possible at all (and without hierarchies, cause I can't work with them)?
Thanks in advance!
Upvotes: 0
Views: 481