Hi Folks,
Excel novice.
I have always had a problem with time calculations.
I know that nested conditional statements are required to meet my desired goal.
Your patience is appreciated.
The conditions
Time variables - these calculations are shaky
Separate Conditional Statements -- need to be verified and combined into one statement
Startup (30 Days from Start Date)
=IF(AND([@[Start Date]]+30)<= Introduction!C$2,[@[Proposal Document]]="Yes",[@[Tag Status]]="Complete",[@Overview]="Yes",[@Activities]="Yes"),"4 OK","2 Startup Red")
Midpoint
=IF(AND((([@[End Date]]+[@[Start Date]])/2)<= Introduction!C$2,[@[Proposal Document]]="Yes",[@[Tag Status]]="Complete",[@Overview]="Yes",[@Activities]="Yes",[@[Project Deliverables]]="Yes"),"4 OK","3 Yellow")
Closeout (60 Days until End Date)
=IF(AND(([@[End Date]]-60)<=Introduction!C$2,[@[KHub Project Completeness]]="Complete"), "Green","1 Closeout Red")
Again, your help is appreciated.
Excel novice.
I have always had a problem with time calculations.
I know that nested conditional statements are required to meet my desired goal.
Your patience is appreciated.
The conditions
- Values Required within 30 days of Start Date
- Values Required within 30 days of Midpoint
- Values Required within 60 days of End Date
Time variables - these calculations are shaky
- Date of Report = Introduction!C$2 (fixed cell in the workbook)
- 30 Days from Start Date: [@[Start Date]]+30
- Midpoint: (([@[End Date]]+[@[Start Date]])/2)
- 60 Days until End Date: [@[End Date]]-60
Separate Conditional Statements -- need to be verified and combined into one statement
Startup (30 Days from Start Date)
=IF(AND([@[Start Date]]+30)<= Introduction!C$2,[@[Proposal Document]]="Yes",[@[Tag Status]]="Complete",[@Overview]="Yes",[@Activities]="Yes"),"4 OK","2 Startup Red")
Midpoint
=IF(AND((([@[End Date]]+[@[Start Date]])/2)<= Introduction!C$2,[@[Proposal Document]]="Yes",[@[Tag Status]]="Complete",[@Overview]="Yes",[@Activities]="Yes",[@[Project Deliverables]]="Yes"),"4 OK","3 Yellow")
Closeout (60 Days until End Date)
=IF(AND(([@[End Date]]-60)<=Introduction!C$2,[@[KHub Project Completeness]]="Complete"), "Green","1 Closeout Red")
Again, your help is appreciated.