>Would anyone be able to let me know if there is some function or
>multiple functions that will allow me to obtain the serial dates of
[quoted text clipped - 3 lines]
>I wish to use the function/formula in the query grid rather than VB or
>SQL.
Doesn't matter where you want to use it. (Besides, what you
specify in a query's design grid is translated to SQL before
it can be used.)
Last date of previous year:
DateSerial(Year(CurrentYear) - 1, 12, 31)
First date in next year:
DateSerial(Year(CurrentYear) + 1, 1, 1)

Signature
Marsh
MVP [MS Access]