Hello All,
We have a requirement in Microsoft Project 2010
Our Client uses different calendars as per different work locations, however standard calendar is mostly used. The typical standard calendar uses a five day week and considers weekends as holidays, and some days like Jan 1st are also treated as holidays.
Now the issue is, at the end of year 2015, last week has only 4 days and as per our formula we can get the last week number in December month as “01”, but since Jan 1st 2016 is holiday, 2nd and 3rd is a weekend. Jan 4th 2016 week again displays as “01”
, whereas it should have been “02”, because of this reason for the entire year week number calculation goes wrong.
Our Solution:
1. Create a custom column as Text3 with formula : Format(Int(Format([Start],"ww",2,2)),"00")
2. Create another custom field ex: DesiredDateInWeek and paste the below formula: If(MONTH(Start)=12 And [Text3]=1,Format([Start],"yy") & (52+Format(Int(Format([Start],"ww",2,2)),"00")) & "." & Format([Start],"w",2,2),Format([Start],"yy")& Format(Int(Format([Start],"ww",2,2)),"00") & "." & Format([Start],"w",2,2))
Now client wants to remove the dummy columns (to show week number) for [start date] and include all the formula calculations only in one column.
And also, we will have to calculate the week formula for different calendars available on the EPM
Can anyone please help us.
Regards,
Harish D