How can I implement the OVER() command in SSRS 2008?
Is there a trick to it, or am I stuck?
And if I am indeed not able to use OVER(), then how can I use PAR
This may be due to not including a column alias for the summarised column - the following SQL generates a usable dataset for me in SSRS:
select d.*, ROW_NUMBER() over (partition by date order by id) rn from dbo.myTable d