O
OTWarrior via AccessMonster.com
I have a query that takes the dates that people have worked, counts the
ammount of work done each day, and then total all of that data.
Ideally (as I am exporting to excel), I would like to just show the total
once, or just at the end of the count (like an "=sum(a1:b20)" in excel)
is this possible?
sql code below
SELECT qry_EXP_ContractsReceivedDaily.dteDateDocReceived,
qry_EXP_ContractsReceivedDaily.CountOfnBookingID,
qry_EXP_ContractsReceivedDailyTOTAL.SumOfCountOfnBookingID
FROM qry_EXP_ContractsReceivedDaily, qry_EXP_ContractsReceivedDailyTOTAL;
ammount of work done each day, and then total all of that data.
Ideally (as I am exporting to excel), I would like to just show the total
once, or just at the end of the count (like an "=sum(a1:b20)" in excel)
is this possible?
sql code below
SELECT qry_EXP_ContractsReceivedDaily.dteDateDocReceived,
qry_EXP_ContractsReceivedDaily.CountOfnBookingID,
qry_EXP_ContractsReceivedDailyTOTAL.SumOfCountOfnBookingID
FROM qry_EXP_ContractsReceivedDaily, qry_EXP_ContractsReceivedDailyTOTAL;