9

I have a report in SSRS 2008 R2. This report consists of one table containing several grouping levels. If the customer requests to see all the detail them I want a page break at the second grouping level of the table. If only the summary details are requested then I do not want the page break as that will cause unnecessary paging. How can I conditionally control the page break at the group level in a table?

The summary details are calculated and returned differently from the sql so I do not want to hide rows, just turn page break on or off.

4

1 に答える 1

34

式ベースの改ページを使用できます。正確なテーブルの設定によっては、これが役立つ場合があります。

基本的に、改ページを適用するかどうかを制御するパラメーターを設定します。

グループレベルには、改ページオプションがあります。改ページプロパティを必要なものに設定してから、無効プロパティを次のような式ベースに設定します。

=IIf(Parameters!Break.Value, false, true)

ここに画像の説明を入力 ここに画像の説明を入力

これは、 Breakパラメータがtrueに設定されている場合にのみ改ページが適用されることを意味します。

于 2013-03-20T10:37:52.777 に答える