Hello everyone!
Im stuck with a issue that appears to be difficult for me , and probably easy for you. I created a crosstab query that gives me the values i need by date
which is working very well. The only problem I'm having is that I am unable to do a summary based on the values presented. example
what I'm wanting is to have each day totaled at the bottom of the report. Here is my code
TRANSFORM Count(MAINtexarkana.MAINID) AS CountOfMAINID
SELECT MAINtexarkana.PASSENGER, MAINtexarkana.SERVICEID, MAINtexarkana.STATUSID
FROM MAINtexarkana
GROUP BY MAINtexarkana.PASSENGER, MAINtexarkana.SERVICEID, MAINtexarkana.STATUSID
PIVOT Format([dateoftrip],"Short Date") In (5/1/2017,5/2/2017,5/3/2017,5/4/2017,5/5/2017,5/8/2017,5/9/2017,5/10/2017,5/11/2017,5/12/2017, 5/15/2017,5/16/2017,5/17/2017,5/18/2017,5/19/2017,5/22/2017,5/23/2017,5/24/2017, 5/25/2017, 5/26/2017,5/29/2017,5/30/2017,5/31/2017);