You might want to start with SQL like:
SELECT TransID, TransTypeId, CheckNo, [Trans Date], [Trans Amount]
FROM tblChecks
WHERE [Trans Date} Between Forms!frmDates!txtStartDate AND
Forms!frmDates!txtEndDate
UNION
SELECT -1 , Null, Null , Null , Sum([Trans Amount]) As Amt
FROM tblChecks
WHERE [Trans Date}< Forms!frmDates!txtStartDate
This makes some assumptions regarding your form and control names.
--
Duane Hookom
Microsoft Access MVP
NOTE: These public News Groups are ending June 1st. Consider asking
questions at
http://social.answers.microsoft.com/...ddbuz/threads?
"Dennis" wrote:
> Duane,
>
> Cool. I've never used Union queries before (guess that is why I asked the
> question). I'll do a little reading and give it a try.
>
>
> Thanks,
>
>
> --
> Dennis
>
>
>