You can find the date with the following SQL script.
--Declare variables and assign values
Declare @year int, @week int, @day int, @thedate datetime
Select @year=2001, @week=40, @day=3
--Use built-in date and string functions to determine date
Set @thedate=dateadd(weekday,@day-1,dateadd(week,@week-1,'01/01/'+ltrim(str(2001))))
--Print result
Print @thedate Terry L. Broadbent
FAQ183-874 contains tips for posting questions in these forums.
NOTE: Reference to the FAQ is not directed at any individual.