Automatic Status Indicator (Red and Green) based on Dates
If you need to automate your Status Indicators to reflect Actual Dates vs Planned Dates, here is a quick example with the expression used for this example.
Expression for row one - Start / End Project
if(isValidDate([Milestones_Summary_ActualEnd]) = false || isValidDate([Milestones_Summary_PlannedEnd]) = false, 'Unset',
if([Milestones_Summary_ActualEnd] > [Milestones_Summary_PlannedEnd] || [Milestones_Summary_ActualStart] > [Milestones_Summary_PlannedStart], 'Red','Green')
)
Note: The field names on this expression are specific for this example.

Please sign in to leave a comment.
Comments
2 comments