SSRS Column Grouping with specific order
- by AmiT
Hi Experts,
Is it possible to change order of records/groups in a result-set from a query using Group By?
=I have a query:
SELECT Category,
Subcategory,
ProductName,
CreatedDate,
Sales
From TableCategory tc INNER JOIN
TableSubCategory ts ON tc.col1 = ts.col2 INNER JOIN
TableProductName tp ON ts.col2 =…