List/Grid

Tag Archives: SSRS

Filters in SSRS

Loading filters in SSRS is the most easy task one can ever think of. However this can be a bit tricky some times. What all is not possible (as per… Read more »

Get SSRS report programatically using C#/.NET

To get the SSRs report programmatically, ReportExecutionService reference is all we need. Browse http://Server/ReportIISDirectory/ReportExecution2005.asmx, this is the path of the report execution service, that provide us functionality to pull the… Read more »

Pivoting Data in SSRS – SQL Server

Consider we have table like Declare @table Table ( Name varchar(100), Year int, Factor int ) insert into @table values (‘Lucky’,2001,12) insert into @table values (‘Lucky’,2002,13) insert into @table values… Read more »