>I'm currently attempting to use the "DAvg" function to report an average for
>a given month of the current year.
[quoted text clipped - 16 lines]
>bottle is running low.
> Thanks, Adam
You can use the DateSerial() function to generate a range of dates:
=DAvg("[TotalPOD]","Qryblockdenandflex","[DateMolded] >= #" &
DateSerial(Year(Date()), 1, 1) & "# AND [DateMolded] < #" &
DateSerial(Year(Date()), 2, 1) & "#")
The second argument of DateSerial is the month, so 1 for January, 2 for
February, 12 for December.

Signature
John W. Vinson [MVP]
Korski - 21 Feb 2008 22:50 GMT
Thank You So Much !
Thanks John, I never would have figured that out......(no more
aspirin needed)
Thanks again, Adam
> >I'm currently attempting to use the "DAvg" function to report an average for
> >a given month of the current year.
[quoted text clipped - 25 lines]
> The second argument of DateSerial is the month, so 1 for January, 2 for
> February, 12 for December.