KC
With 11 Jan 05 in L1 I came up with this formula:
=DATE(YEAR(L1),MONTH(L1)+1,13)-WEEKDAY(DATE(YEAR(L1),MONTH(L1)+1,13),3)+1
(entered normally) which when copied down does give the 2nd Tuesday of each
month but I prefer the formula I found that Peter Dorigo posted in 2000:
=DATE(YEAR(L1),MONTH(L1)+1,15)-WEEKDAY(DATE(YEAR(L1),MONTH(L1)+1,5))
He also included an explanation:
Start of Peter's post *****************************
for any weekday in any week:
=DATE(YEAR(A1),MONTH(A1)+1,[w])-WEEKDAY(DATE(YEAR(A1),MONTH(A1)+1,[wd]))
replace [wd] by
0 for sunday
1 for saturday
2 for friday
3 for thursday
4 for wednesday
5 for tuesday
6 for monday
replace [w] by
8 for first week
15 for second week
22 for third week
29 for fourth week
for the last week use this formula (in some cases the same result like 4.
week):
=DATE(YEAR(A1),MONTH(A1)+2,1)-WEEKDAY(DATE(YEAR(A1),MONTH(A1)+1,[wd]))
Peter
End of Peter's post **********************************
HTH
Sandy