Skip to main content
A newer version of this page is available. .

Conditionally Change a Band's Visibility

  • 2 minutes to read

This document describes how to change report band visibility.

Note

This approach to conditionally changing a band’s visibility applies when the UserDesignerOptions.DataBindingMode is set to DataBindingMode.Bindings.

See Conditionally Change a Band’s Visibility to learn about the alternative approach to solving this task.

See Data Binding Modes to learn more about available binding modes.

Create a formatting rule for a band’s Visible property to conditionally change the band’s visibility based on a field’s value or a parameter.

The report created in this tutorial contains two Detail sub-bands with different report controls. These sub-bands are used to display discontinued and current products.

1

Follow the steps below to see how to change sub-band visibility based on the Product‘s Discontinued field value.

  1. Bind your report to the Products table from the Northwind database.

  2. Add two Sub-bands to the Detail band, and drag the XRLabel from the Toolbox to the first sub-band and XRTable to the second sub-band.

    2

    Bind Label1 and TableCell1 to the ProductName field. Add an XRPictureBox control to the TableCell2 and specify its ImageSource property. This picture will serve as an indication of discontinued products.

    3

  3. Select the created SubBand1 and click its smart tag. In the invoked actions list, click the ellipsis button for the XRControl.FormattingRules property.

    how-to-conditionally-change-band-visibility-1

    In the invoked Formatting Rules Editor, click the Edit Rule Sheet… button.

    How to - ConditionallySuppressControls_0a

  4. In the invoked Formatting Rule Sheet Editor, click Buttons_Plus to create a new formatting rule.

    This means that the Discontinued data field should be true for the SubBand1 to be hidden.

    How to - ConditionallySuppressControls_2

  5. In the Formatting Rules Editor, move the created rule (named formattingRule1) to the list of active rules.

    How to - ConditionallyFilterData_3

  6. Do the same (the steps 3-5 above) with the SubBand2. Create a formatting rule.

    • Set the Visible property to false.
    • Set the Condition property to the [Discontinued == false] expression.

    5

    In the Formatting Rules Editor, move the created rule (named formattingRule2) to the list of active rules.

As a result, Print Preview displays how changes to band visibility influence the Product List. The SubBand1 is used to display products that have the Discontinued field set to false, and the SubBand2 is used to display discontinued products.

6