The Weekday() function returns the numerical day of the week. Hence, on any
day you can get back to Sunday by saying Date() - Weekday(Date()) + 1. That
is: Today - the weekday function (which will return you to last Saturday) + 1
(to advance to Sunday).
HTH
>How do I select all the days in the current week from a date field? I want
>to view all the employees hired in the current week using the hire date. I
[quoted text clipped - 6 lines]
>
>Scott

Signature
Sam
Scott - 01 Dec 2005 15:15 GMT
That's cool, thank you!
> The Weekday() function returns the numerical day of the week. Hence, on any
> day you can get back to Sunday by saying Date() - Weekday(Date()) + 1. That
[quoted text clipped - 13 lines]
> >
> >Scott