问题
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