1

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 enter image description here

DaFois
  • 2,197
  • 8
  • 26
  • 43
  • Can you elaborate more? There doesn't seem to be a question here. A format like the following can really help us help you. "This is what I tried, this is what I got, this is what I expect" – Pants May 28 '19 at 15:59

1 Answers1

0

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:

enter image description here

StevenWhite
  • 5,907
  • 3
  • 21
  • 46