R
Rossz
I've been asked to make a seemingly simple change to a report. Currently
it looks something like this (fake data). This is used in the warehouse to
prepare the magazines for pickup by the drivers:
-------------------------------------------------
Drive Name: John Smith
Route # Publication Name Bundles Singles
123 Better Living 20 3
124 Better Living 10 0
124 Stupid Things 5 2
-------------------------------------------------
The magazines are packages in bundles (e.g. 20 magazines in a bundle).
They want the report changed to this:
-------------------------------------------------
Drive Name: John Smith
Routes: 123 124
Publication Name Bundles Singles
Better Living 30 3
Stupid Things 5 2
-------------------------------------------------
But I can't figure out how to print the route numbers horizontally. It
would be best if the query combined all the route numbers into a single
string for each driver, but I'd settle for handling this in the report.
Is this one of those things that requires a bit of scripting to handle?
it looks something like this (fake data). This is used in the warehouse to
prepare the magazines for pickup by the drivers:
-------------------------------------------------
Drive Name: John Smith
Route # Publication Name Bundles Singles
123 Better Living 20 3
124 Better Living 10 0
124 Stupid Things 5 2
-------------------------------------------------
The magazines are packages in bundles (e.g. 20 magazines in a bundle).
They want the report changed to this:
-------------------------------------------------
Drive Name: John Smith
Routes: 123 124
Publication Name Bundles Singles
Better Living 30 3
Stupid Things 5 2
-------------------------------------------------
But I can't figure out how to print the route numbers horizontally. It
would be best if the query combined all the route numbers into a single
string for each driver, but I'd settle for handling this in the report.
Is this one of those things that requires a bit of scripting to handle?