views:

325

answers:

1

I have a narrow table on a report with 6 columns. The table has to hold 1 - 4 rows, depending on the data. I designed the report so that there is enough white space to accommodate 4 rows. I want to use the space on the right side of the table. When I place text fields there, they get pushed down by the table as it expands to show additional rows. Is there a way to lock these text fields into place?

alt text

+1  A: 

I finally figured this out. A rectangle works as a container for data regions. If I place the table into a rectangle, it will only grow within the boundaries of the rectangle, without pushing other report items around. In order for this to work, though, the table must be a child control of the rectangle. This is achieved by dropping a new table into an existing text box, or by dropping an existing table some place outside of the rectangle, then moving it back inside. If you just draw a rectangle around the table, it will not become a child. This can be verified by right-clicking on the table. If it only says "select body" and not "select rectanglexx" as well, it is not a child of the rectangle. Alternatively, it is possible to place other items (text boxes, etc into a rectangle that is on one side of a table. The top edge of the rectangle must be above the bottom edge of the table. Then any controls in the rectangle will be unaffected by the growth of the table, but other items below the table will.

cdonner