I have a dataset in SSRS which is actually a view that has following data
A | B | C
========================
B101 | Box | 100
B101 | Box | 100.2
B101 | Cart |99
B102 | Box |110
From the dataset, I need to repot sum of column C where C>=100 group by Col A and ColB So the report looks something like this:
A | B |C
===============
B101 | Box | Sum(100+100.2)
B102 | Box |Sum(110)
I can't figure out how to achieve or set the query on the report dataset. Is there a way to do it without creating a new dataset that does group by?




