You can use a function similar to the following. You may need to modify depending on how you define the first week of the year. This function assumes that the week that contains Jan. 1 is the first week of a year.
Public Function WeekNoToFirstDayOfWeek _
(iYear As Integer, iWkNo As Integer) As Date
iWkNo = iWkNo - 1
WeekNoToFirstDayOfWeek = _
DateAdd("ww", iWkNo, DateSerial(iYear, 1, 1)) - _
Weekday(DateAdd("ww", iWkNo, _
DateSerial(iYear, 1, 1))) + 1
End Function
Call the function as follows.
txtBox1 = _
Format(WeekNoToFirstDayOfWeek(2001,26), "mm/dd/yy"

txtBox2 = Dateadd("d", 6, txtBox1) Terry L. Broadbent
FAQ183-874 contains tips for posting questions in these forums.
NOTE: Reference to the FAQ is not directed at any individual.