
Signature
Thanks for your help,
Barb
Use DateSerial in both cases. Also, instead of adjusting the Year value,
adjust the Month value.
Between DateSerial(Year(Date()), Month(Date())-12,1) and
DateSerial(Year(Date()),Month(Date()),0)
The Zero day of the month is the Last day of the previous month. Think of
it as subtracting 1 from the 1st day of the month
DateSerial(2006,1,1) -1 which can be done as DateSerial(2006,1,1-1)
> Can anyone aid me please?
>
[quoted text clipped - 20 lines]
>
> Someone please come to my rescue.
Chris - 05 Jan 2006 19:12 GMT
That works great, John. Thanks so much for the help.

Signature
Thanks for your help,
Barb
> Use DateSerial in both cases. Also, instead of adjusting the Year value,
> adjust the Month value.
[quoted text clipped - 31 lines]
> >
> > Someone please come to my rescue.