Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RDLC レポートには動的リスト (名前、ページ番号) を生成する必要があります。しかし、このように 3 つの列にラップする必要があります。これに対する解決策はありますか?
次のようなマトリックスを設定します。
行グループは次の式に基づいています。
=Ceiling(RowNumber(Nothing) / 3)
列グループは次の式に基づいています。
=(RowNumber(Nothing) - 1) Mod 3
つまり、各行の行番号に基づいてグループ化しています。
これにより、データに必要な結果が得られます。