J
joave
Hi:
I am attempting to filter out the month of a query but don't seem to be
having any luck. I can successfully use a date range but want to just enter
the month and year. Is this possible? I built a crosstab query but it comes
up empty:
TRANSFORM Sum(tblReservations.TotalCharge) AS SumOfTotalCharge
SELECT tblFacilities.FacilityName
FROM tblFacilities INNER JOIN tblReservations ON tblFacilities.FacilityID =
tblReservations.FacilityID
WHERE (("mmm"="Jul" AND "yyyy" = 2003)) 'doesn't matter what I put here or
how I put it; it still comes up empty
GROUP BY tblFacilities.FacilityName
PIVOT Format([CheckOutDate],"yyyy mmm");
Thank you in advance for your help.
I am attempting to filter out the month of a query but don't seem to be
having any luck. I can successfully use a date range but want to just enter
the month and year. Is this possible? I built a crosstab query but it comes
up empty:
TRANSFORM Sum(tblReservations.TotalCharge) AS SumOfTotalCharge
SELECT tblFacilities.FacilityName
FROM tblFacilities INNER JOIN tblReservations ON tblFacilities.FacilityID =
tblReservations.FacilityID
WHERE (("mmm"="Jul" AND "yyyy" = 2003)) 'doesn't matter what I put here or
how I put it; it still comes up empty
GROUP BY tblFacilities.FacilityName
PIVOT Format([CheckOutDate],"yyyy mmm");
Thank you in advance for your help.