Aug 18, 2003 #1 JovialBob Programmer Feb 25, 2003 9 GB Hi, I can make a week number - Format(Now,"ww" = 34 easy peasy... Does anyone know if I can go the other way round like Format(34,"dd/mm/yy", fistdayofweek) = 18/08/03 or something? Thanks in advance...
Hi, I can make a week number - Format(Now,"ww" = 34 easy peasy... Does anyone know if I can go the other way round like Format(34,"dd/mm/yy", fistdayofweek) = 18/08/03 or something? Thanks in advance...
Aug 18, 2003 #2 CCLINT Programmer Feb 22, 2002 3,802 DE iWeek% = 34 ?DateSerial(Year(Date),1,((iWeek - 1) * 7)-1) Upvote 0 Downvote
Aug 18, 2003 Thread starter #3 JovialBob Programmer Feb 25, 2003 9 GB Thank you CClint - that's very helpful, it woks a treat. Upvote 0 Downvote