Search code examples
reporting-servicesssrs-tablixreportbuilder

SQL Server Report Builder List expanding right and across


How to configure Report Builder List component to expand right and across?

Something like this:


Solution

  • Solution found here:

    On the Detail row of the first table, for the Visibility-Hidden property:

    =iif((RowNumber(Nothing) Mod 2) = 1, False, True)
    

    On the Detail row of the second table, for the Visibility-Hidden property:

    =iif((RowNumber(Nothing) Mod 2) = 1, True, False)