vote up 1 vote down star

Hello,

I have sever nested subreports that by default are hidden and are only made visible when toggled via an element in the parent report. I want SSRS to not execute the query statements for these subreports untill they are toggled and made visible. The subreports recieve their parameters from their parents, and not from any user input. Is there a way to implement this?

I am using SQL Server 2008 Business Intelligence Development Studio.

flag

1 Answer

vote up 0 vote down

In your dataset (if you are using text) preface your query with the following:

If ShowSubreportParameter = "Yes"
BEGIN
   ---Insert Your Query Here
END

If you are using a stored procedure, you could try the same thing but call your sproc from inside the text:

IF ShowSubreportParameter = "Yes"
BEGIN
   Exec MySproc @parameter
END
link|flag
Thanks for your resposnse.. The problem is that the query is not to a data base insteat to a web service. This is what my query text looks like: <Query> <Method Namespace="tempuri.org/"; Name="GetUserInfo"> </Method> <SoapAction>tempuri.org/GetUserInfo</SoapAction>; </Query> – shivam Jun 12 at 17:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.