I'm using SSRS 2016. I have a dataset that looks like the following:
Year Month Supplier Category Type Item Sales QTY
2010 02 Supplier1 Category2 Type1 Item1 200 10
2010 02 Supplier2 Category2 Type1 Item3 150 15
2011 02 Supplier1 Category1 Type1 Item4 250 10
2011 02 Supplier2 Category2 Type1 Item3 400 20
My tablix that I created in SSRS look as follows:
[YEAR]
[Supplier] sum(Sales)
[Category] sum(sales)
[Item] sum(sales)
Total sum(sales)
The result looks like this:
2010 2011
Supplier1 200 250
Supplier2 150 400
I need to sort the data according to the 2011 column desc for Supplier, then Category, then Item. When I use the tablix properties Sort or the Group Properties sort on SSRS, it sorts via the total of 2010+2011 and not just the values in 2011.
EDIT: The table contains sales for multiple years/suppliers/categories/items. the user limits it to the year/month they need and it provides a comparison with the year before. So if the month is 2 and year 2011, it will provide 2011-02 and 2010-02
Is there anything that I am missing?