I have several datasets/tablixes on my report (e.g. seven datasets). All datasets have the same fields: First field is the primary key, the other fields are integer values. E.g:
and five other tables...
Now what I want is to generate a new dataset, which UNION all datasets, then groups them by the ID and sums up all the fruits. Thus the new dataset looks like this:
I Know that I could write a new SQL query which unions all the seven existent queries, but in my case this would be a very, very long query. So I wonder if this is possible by using pure SSRS functionality (e.g. expressions on calculated fields)?