70-466 · Question #109
You are developing a new SQL Server Reporting Services (SSRS) report in SQL Server Data Tools (SSDT). This report has a table named Table1 and a textbox named Textbox1. Table is initially visible but
The correct answer is B. For the properties of Table1, configure the Display can be toggled by this report item option to use Textbox1.. SSRS supports interactive visibility toggling by configuring a report item's visibility to be controlled by a separate textbox, letting users show or hide Table1 without rerunning the report.
Question
Options
- AAdd a parameter to the report so users can choose the display state of Table1.
- BFor the properties of Table1, configure the Display can be toggled by this report item option to use Textbox1.
- CConfigure Textbox1 to drill through to rerun the report to toggle the display of Table1.
- DFor the properties of Table1, configure the Display can be toggled by this report item option to use Table1.
How the community answered
(40 responses)- A8% (3)
- B88% (35)
- C3% (1)
- D3% (1)
Why each option
SSRS supports interactive visibility toggling by configuring a report item's visibility to be controlled by a separate textbox, letting users show or hide Table1 without rerunning the report.
A report parameter controls visibility only at render time when the report is first executed and does not allow the user to interactively toggle Table1's display state after the report has already loaded.
Configuring the 'Display can be toggled by this report item' property on Table1 to reference Textbox1 implements SSRS's built-in toggle feature, which renders Textbox1 with a clickable expand/collapse indicator. This allows users to interactively show or hide Table1 after the report renders without requiring a parameter change or a report rerun, directly satisfying the requirement.
A drill-through action navigates to another report or reruns the current report with different parameters; it does not toggle the in-place visibility of a report item within the current rendered report.
SSRS requires the toggle source and the controlled item to be different report items, so Table1 cannot reference itself as its own toggle control.
Concept tested: SSRS interactive visibility toggle using a report item
Source: https://learn.microsoft.com/en-us/sql/reporting-services/report-design/add-an-expand-or-collapse-action-to-an-item-report-builder-and-ssrs
Topics
Community Discussion
No community discussion yet for this question.