I have two different datasets in SSRS report which gives different outputs. I have used one dataset for summarized information (i.e Chart) and other is used for actual data (Table).
1) Chart will display output at the time of report execution. 2) Table should execute only when the report renders into CSV.
Requirement: I need to execute the one dataset SP at report run time. Other Dataset SP should not Execute when the report is running it should run only when the report rendering into CSV format
Example: Dataset1 executes Sp1 Dataset2 executes Sp2
Chart uses Sp1 and Table uses Sp2
Normally while executing report Chart will display output. But SP1 and SP2 are executing at the same time.so report takes more time to display output.
So I need to restrict the Actual data dataset when we running the report.