In a new ssrs 2008 r2 report, I am obtaining parameter values to pass to the main query of the report by setting up individualdatasets that look like the following for each value in the temp table called #year:declare @user int = 1IF OBJECT_ID('tempdb..#year') IS NOT NULL DROP table #yearCREATE TABLE #year( Year varchar(10) , School varchar(40) , Calendar varchar(30) , taskID int) INSERT #year EXEC [text].[dbo].[procQCParam] @user select distinct year from #year IF OBJECT_ID('tempdb..#year') IS NOT NULL DROP table #yearI am told by the users that each parameter value will be displayed independently by each parameter. In other words once the user selects year, then the values for school are displayed. Once the values for school are selected, then the values are can be selected for Calendar. These I believe are called cascading parameters.Based upon what I described above, can you show me the sql for the cascading parameters and explain how to link the parameters together?
↧
The Objects listed above have already been created so the data can be accessed manually right now.
↧