PDA

View Full Version : Week Number And Week Start Day of Week



Rajesh Kr Joshi
10-24-2011, 03:27 PM
Hi,

I wants to calculate the week for a given date. I have dates in column c2 to c32 (1-Oct to 31st Oct), in B2 to B32 i wants to show in which week (i.e. 3rd Oct,10th Oct, 17 Oct.. etc) these dates are falling in.

Thanks
Rajesh

Admin
10-24-2011, 04:02 PM
Hi,

Try

=WEEKNUM(C2,1)


Return_type is a number that determines on which day the week begins. The default is 1.

Return_type Week Begins

1 Week begins on Sunday. Weekdays are numbered 1 through 7.
2 Week begins on Monday. Weekdays are numbered 1 through 7.

Rajesh Kr Joshi
10-24-2011, 05:49 PM
Hi,
This will give me the week number, but i want the week start date.

Thanks
Rajesh

Excel Fox
10-24-2011, 06:49 PM
=C2-WEEKDAY(C2,2)+1

Rajesh Kr Joshi
10-24-2011, 07:33 PM
Simply awesome :) thanks