Hello all,
The following formula returns the weeknumber of any given date:
[ISO standard]
I'd like cell B1 to check the date in A1 [lets say 02-jan 2011] and return the first date of the next weeknumber [mon 03-jan 2011]
Offcourse only if not already the first date of a week is given.
Ideas?
The following formula returns the weeknumber of any given date:
[ISO standard]
Code:
=IF(AP12="","",INT((AP12-WEEKDAY(AP12,2)-DATE(YEAR(AP12+4-WEEKDAY(AP12,2)),1,4))/7)+2)
I'd like cell B1 to check the date in A1 [lets say 02-jan 2011] and return the first date of the next weeknumber [mon 03-jan 2011]
Offcourse only if not already the first date of a week is given.
Ideas?