How to print a field data horizontally?

  • Thread starter Thread starter Kuki
  • Start date Start date
K

Kuki

I want one of the field, but not the whole report to
print the data horizontally, such as

Invoice no
2323
1124
2344
1209
2321
2342
2039

change to

2323 1124 2344
1209 2321 2342
2039

Can I do that in Access?
 
Kuki said:
I want one of the field, but not the whole report to
print the data horizontally, such as

Invoice no
2323
1124
2344
1209
2321
2342
2039

change to

2323 1124 2344
1209 2321 2342
2039


The usual way to do that is to change th report's record
source query to a Totals (Group By) type query and use a
multi-column subreport for the details.
 
Back
Top