Have you looked at the DateAdd and Weekday functions? You can add any number of weeks to a date. January, 2000 began on a Saturday, so adding a week will always return a saturday date (you can use Weekday function to confirm this), so you need to subtract one to get the friday date.
for example:
DateAdd("ww", 1, #1/1/00#) = 1/8/00
Then
dateadd("d",-1,#1/8/00#) = 1/7/00, which is the friday of the first week of the year.
Combining the two:
Dateadd("d",-1, DateAdd("ww", 1, #1/1/00#))
Your function could look like this:
Function GetFriday(intWeek as integer) as date
GetFriday = dateadd('d',-1,dateadd("ww",intweek,#1/1/00#))
end function
This will only work for 2000.
[sig]<p>Kathryn<br><a href=mailto: > </a><br><a href= > </a><br> [/sig]