Need a better way to determine if a project is baselined

S

Skip W

Currently using MSP 2003 & server. I need to determine if a project has a
baseline so at the enterprise project Flag3 I use the formula iff(Baseline
Duration > 0, True, False). This is causing changes to enterprise Flag3
settings and I don't know why. Is there a better way to simply determine if
a project is baselined and set a field at the project level?
 
D

Dale Howard [MVP]

Skip W --

You can simply create a custom enterprise Flag field containing the
following formula:

IIf([Baseline Start]=ProjDateValue("NA"), False, True)

Hope this helps.
 
Top