Hello
I am trying to work out a formula in excel that can narrow down a 4 week and say 2 day working month into 4 weeks. So if 30th and 31st would be in week 1 of the following month (along with 1,2, and 3rd) therefore Monday 6th would be Week 2.
I currently have the following formula:
B2 being the cell with the date to calculate the week number.
Thanks
I am trying to work out a formula in excel that can narrow down a 4 week and say 2 day working month into 4 weeks. So if 30th and 31st would be in week 1 of the following month (along with 1,2, and 3rd) therefore Monday 6th would be Week 2.
I currently have the following formula:
Code:
CONCATENATE("Wk",INT((DAY(B2)+WEEKDAY(B2-DAY(B2)+2)+3)/7))
B2 being the cell with the date to calculate the week number.
Thanks