i need to create a query which must shows the date which start from 1st
monday and every fortnight.
i.e. consider this month, the date of 1st monday is 02/01/2006 so the next
date must be 16/01/06 and then 30/01/06 and so on. it must automatically
change every month. that is my question.
is there any way to do this in query. the formula given me perfectly worrks
for the 2nd tuesday.
thanks for that. but i dont no how to do this bit.
ok... so there can never be more than three such dates in a month,
correct? You essentially want the dates of the first Monday of
(what... any given month? the current month? next month? the next 500
years of months? you haven't explained that in this entire thread
though I've asked), the third Monday, and (if there is one) the fifth
Monday?
I think this could be done with some VBA, or possibly even a fairly
snarky expression for the third. The first Monday isn't too bad, if
you have a date in the month in question in the field Somedate:
DateSerial(Year([Somedate]), Month([Somedate]), 8 -
Weekday(DateSerial(Year([Somedate]), Month([Somedate]), 1), 2))
and the second fortnight, just use 22 instead of 8.
But you have not answered my basic question, which I guess I have not
ever clearly asked:
WHY?
What is it that you will do with this information when you get it? In
what form do you want it? How will it be used?
John W. Vinson[MVP]