February 1, 200521 yr Newbies I have a week number field and a year field (both numbers) and I would like them to return the date for the monday of that week. Any suggestions
February 1, 200521 yr Case( weeknumber and year; Date( 1; 1; year ) + 7 * (weeknumber - 1) - DayOfWeek(Date( 1; 1; year )) + 2 )
February 1, 200521 yr Ah, Bob beat me, but he inspired this 'simplification'. Case( weeknumber and year; Date( 1; 7 * weeknumber - DayOfWeek(Date( 1; 1; year )) - 4; year ) )
Create an account or sign in to comment