SSRS Report Populate same table field values in different columns in Orderly Manner

懵懂的女人 提交于 2019-12-24 07:25:37

问题


I need to fill bank deposit slip, deposit slip in the format of 3 columns for Amount I want to fill the amount column by column in an orderly manner But in the table field is the only Amount


回答1:


You can specify the row and column that each amount should be in using RowNumber functions inside a matrix.

Insert a matrix into the report. Set the columns to be grouped by:

=(RowNumber(Nothing) +1) Mod 3

Set the rows to be grouped by:

=Ceiling(RowNumber(Nothing) / 3)

Here's an example of how the results would look:



来源:https://stackoverflow.com/questions/56344744/ssrs-report-populate-same-table-field-values-in-different-columns-in-orderly-man

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!