D
Dragon
I have four checkboxes in a table tracking types of loads shipped.
I need a query that can tell me the number of loads of each type shipped in
a given day.
The loads can be export or not, and within export it could be a truck,
railcar or container. If the load is not an export load, it is always a
truck. Also, when there are no records (i.e. no containers loaded that day)
there needs to be a default value of zero. This way the number of records
the query returns is consistent.
Example of quantity output for a given day:
Trucks loaded domestic: 0
Trucks loaded export: 1
Railcars loaded export: 3
Containers loaded export: 0
Thanks in advance,
Dragon
I need a query that can tell me the number of loads of each type shipped in
a given day.
The loads can be export or not, and within export it could be a truck,
railcar or container. If the load is not an export load, it is always a
truck. Also, when there are no records (i.e. no containers loaded that day)
there needs to be a default value of zero. This way the number of records
the query returns is consistent.
Example of quantity output for a given day:
Trucks loaded domestic: 0
Trucks loaded export: 1
Railcars loaded export: 3
Containers loaded export: 0
Thanks in advance,
Dragon