I don't know any VBA so I need your help. I need a module that would output data to a report in columns instead of rows.
When you make a report data is output like this:
Title
------------------------------------------
record1
record2
record3
record4
record5
I need a module that would output data like this:
Title
-------------------------------------------
record1; record2; record3; record4;
record5; record6; record7; record8;
The amount of columns and rows should be definable.
Or perhaps there is a more simple way to do it?
When you make a report data is output like this:
Title
------------------------------------------
record1
record2
record3
record4
record5
I need a module that would output data like this:
Title
-------------------------------------------
record1; record2; record3; record4;
record5; record6; record7; record8;
The amount of columns and rows should be definable.
Or perhaps there is a more simple way to do it?