E
Ernst Guckel
Hello,
I am having a bit of trouble here... I have 3 queries that are Identical
with a few exceptions but the design is the same... Each looks like this:
qryDayPart1
SELECT tblSales.SalesDate, Sum([Sales]/100) AS DayPart1,
Sum(tblSales.Transactions) AS DayPartCust1
FROM tblSales
WHERE (((tblSales.SalesTime) Between DayStart(1) And DayStop(1)))
GROUP BY tblSales.SalesDate;
qryDayPart2 and 3 are the same except DayStart and DayStop call with 2 and 3
and the Field names are DayPart2 and DayPart3. I am looking to combine this
into a query that results in:
SalesDate, DayPart1, DayPart2, DayPart3...
Any ideas?
Ernst.
I am having a bit of trouble here... I have 3 queries that are Identical
with a few exceptions but the design is the same... Each looks like this:
qryDayPart1
SELECT tblSales.SalesDate, Sum([Sales]/100) AS DayPart1,
Sum(tblSales.Transactions) AS DayPartCust1
FROM tblSales
WHERE (((tblSales.SalesTime) Between DayStart(1) And DayStop(1)))
GROUP BY tblSales.SalesDate;
qryDayPart2 and 3 are the same except DayStart and DayStop call with 2 and 3
and the Field names are DayPart2 and DayPart3. I am looking to combine this
into a query that results in:
SalesDate, DayPart1, DayPart2, DayPart3...
Any ideas?
Ernst.