I have a table that tracts weekly duties for my department. The weekly duties are dated beginning on monday of each week...I want to "filter" out the last week of a month for each month on the current year. Getting the current year is not a problem year(now()) and I tried doing a datepart("d", [date])where results were <=31 and >=25 but February throws me a curve...anything less than 25 gives me 2 weeks in a couple of months.
Wanted results example:
username 1/26/2004
username 2/23/2004
username 3/29/2004
....
Wanted results example:
username 1/26/2004
username 2/23/2004
username 3/29/2004
....