In a normal report I have data from table like:
Order number Paid
---------------------------------
001 Yes
002 NO
003 Yes
004 Yes
Now I need to make report that would list all order numbers in rows.
I will filter input data by month or quater using query to limit input data.
Orders This month <- This is report title entered by hand
-----------------------------------------------------
001; 002; 003; 004; 005; 006 How to make data fill in rows?
007; 008; 009; 010; 011; 012 How to specify how many in a row and
how many colums?
How do I make it work like this?
Order number Paid
---------------------------------
001 Yes
002 NO
003 Yes
004 Yes
Now I need to make report that would list all order numbers in rows.
I will filter input data by month or quater using query to limit input data.
Orders This month <- This is report title entered by hand
-----------------------------------------------------
001; 002; 003; 004; 005; 006 How to make data fill in rows?
007; 008; 009; 010; 011; 012 How to specify how many in a row and
how many colums?
How do I make it work like this?