A family of Microsoft relational database management systems designed for ease of use.
John,
Yeah, I feel your frustration but we can help. Here's why your formula doesn't seem to work for Project but does for Excel. Project stores all time related data in minutes, so what you see as 5 days is stored internally as 2400 minutes (assuming you are using the default 8 hour work day). Negative and zero total slack values work fine because negative minutes are still negative and zero minutes is still zero. It's the positive values that need to be adjusted. So, try this formula:
IIf([Total Slack]<0,5,IIf([Total Slack]=0,4,IIf([Total Slack]<=2400,3,IIf([Total Slack]<=4800,2,1))))
If you are not using the default 8 hour day, you could also use the slightly more complex syntax:
IIf([Total Slack]<0,5,IIf([Total Slack]=0,4,IIf([Total Slack][Minutes Per Day]<=5,3,IIf([Total Slack][Minutes Per Day]<=10,2,1))))
Hope this helps.
John