In my instance we have a project view that was created by a previous admin that displays the actual day a task has a planned start date (ex. "Monday", or "Tuesday"), however what users have noticed is that day being displayed is often incorrect, usually a day later of so. I did some digging and noticed a lot of these tasks have time stamp for 5:00PM, even on planned start date fields, and the tasks generally all have ASAP contraints. Here's the code that was used on the Day of the Week field:
displayname=Start On Weekday
valueexpression=CASE(DAYOFWEEK({plannedStartDate}),"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
valueformat=HTML
and for the Due On Weekday field:
displayname=Due On Weekday
valueexpression=CASE(DAYOFWEEK({plannedCompletionDate}),"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
valueformat=HTML
any advice on how to get these calculated fields to populate correctly? Or is it as simple as going into the project templates and making sure the timestamps are accurate?