May 31, 2007 #1 Elsje Programmer Feb 20, 2004 44 BE Hello, I have a weeknumber for example week 51 and I need to know a date in this week for example 19/12/2007. It can be any date in this week. Is there an easy way to do something like this. Thanks in advance Els
Hello, I have a weeknumber for example week 51 and I need to know a date in this week for example 19/12/2007. It can be any date in this week. Is there an easy way to do something like this. Thanks in advance Els
May 31, 2007 1 #2 DickDavies IS-IT--Management Jan 4, 2002 22 GB Try : DayNo = (Week -1) * 7 Date = DateAdd("d", DayNo,#1/1/2007#) Should give you date of the first day in that week. Upvote 0 Downvote
Try : DayNo = (Week -1) * 7 Date = DateAdd("d", DayNo,#1/1/2007#) Should give you date of the first day in that week.