mfl Posted August 24, 2011 Posted August 24, 2011 I have this conditional formating calc. (ProcessTracking::P10ReviseDate >= ProcessTracking::P10PlanDate – 7) and (ProcessTracking::P10ReviseDate < ProcessTracking::P10PlanDate) The complaint is with the "P10PlanDate - 7", how do I subtract days from a field. In a previous iteration which was doing the wrong thing but worked was...... (ProcessTracking::P10ReviseDate > Get ( CurrentDate )) and (ProcessTracking::P10ReviseDate ≤ Get ( CurrentDate ) + 7) Thanks Michael
comment Posted August 24, 2011 Posted August 24, 2011 Please explain, in plain human language, what is the condition you want to apply,
mfl Posted August 24, 2011 Author Posted August 24, 2011 Comment, What I am trying to achieve is that if the ReviseDate set is within 7 days prior to reaching PlanDate and less than PlanDate the field goes yellow, alerting the user. I have another conditional formatting calc that turns the field red when plan date is reached and/or passed. All fields are defined as date.
comment Posted August 24, 2011 Posted August 24, 2011 ReviseDate set is within 7 days prior to reaching PlanDate and less than PlanDate That would be = PlanDate - 7 < ReviseDate and ReviseDate < PlanDate However, if you have another condition for ReviseDate ≥ PlanDate, then = PlanDate - 7 < ReviseDate should be quite sufficient - provided the other condition is subsequent to this one.
Recommended Posts
This topic is 4896 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now