1

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

Something like this:

OctoCode
  • 382
  • 4
  • 14

2 Answers2

1

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)
OctoCode
  • 382
  • 4
  • 14
0

Only this worked for me, placing here for future reference. The Report > Columns property and hacks were a no go. Using Power BI Report Builder (not SSRS, not PBI Desktop :) 08-Horizontal Table Report

Gary Thomann
  • 576
  • 6
  • 17