Your words were "to restrict to the current quarter" so that is what I did.
If you want the previous 3 months then try this --
Between DateAdd("m",-3, (Date() - Day(Date()))+1 AND (Date() - Day(Date()))
This subtract the current day of month from today resulting in the last dat
of last month. For 3 months prior it adds one day to give the first of month
annd then subtracts 3 months.
Unfortunately, I can't use this consistently because we run this report for
the previous month... so if I run it early January for Oct - Dec., it'd
[quoted text clipped - 9 lines]