Select TOP 1000 SUM(UnitPrice),SUM(ExtendedAmount)
FROM dbo.FactInternetSales
where SalesTerritoryKey IN (6,7,1,9,4)
How can I write expression in SSRS to achive this kind of aggregation.
FROM dbo.FactInternetSales
where SalesTerritoryKey IN (6,7,1,9,4)
How can I write expression in SSRS to achive this kind of aggregation.