Hi again,
This might be my last piece to finalizing my current dashboard.
Each project has three types of go-live dates:
For each of these three types of go-live dates, there can be 10 instances, so 30 date attributes in all. They're numbered Initial 1, Adjusted 1, Actual 1, Initial 2, Adjusted 2, Actual 2, etc.
The first thing I want to do is exclude any instances where there's an Actual date. For instance, if there's an Actual 4 Date already, then I don't want to include the Initial 4 or Adjusted 4 in the following criteria. I have the following criteria to determine if a project is on time or not
- If Initial is blank = On-Time
- If Adjusted </= 25 days after Initial (or earlier than Initial) = On-Time. > 25 days = Overdue
- If no Adjusted, & Initial > 25 days in the past = Overdue
- If Adjusted > 25 days in the past = Overdue
I can get as far as something like this to compare the two dates, but fitting all these pieces together is not working for me.
when Adjusted 1
<= DATE_ADD(Initial 1
, interval 25 day) then 'On-Time'
Any help would be greated appreciated!