PivotMeThis
Active Member
- Joined
- Jun 24, 2002
- Messages
- 346
I have a report that updates project progress weekly. I take this report and add it to a "master report" and create pivot tables to summarize the data.
There are 3 columns in if statements
Projects 10-20% Behind Schedule
Projects Over 20% Behind Schedule
Projects 80% or Less Completed and Over 20% Behind Schedule
The 3 pivot tables I create reflect projects 10-20% behind schedule, projects over 20% behind schedule, and projects 80% or less complete and over 20% behind schedule.
Column S is “work completed” and column X is “time used”.
This seemed to be working okay but I recently noticed that if a project was 80% or less complete and over 20% behind schedule one week but caught up and is now only 20% behind schedule it still shows up on the pivot table that is was less than 80% complete (for that former week).
I would like projects to only show up on one pivot table at a time.
This seems really complicated to try to explain. I have a way of removing completed projects or projects that are no longer behind for any reason, but if a project is no longer behind on one pivot table (say it was over 20% behind last week, but it has moved to 10% this week) I only want to see it on the pivot table for projects that are 10-20% behind.
I'm really not sure if this is possible and that's why I'm here
There are 3 columns in if statements
Projects 10-20% Behind Schedule
PHP:
=IF(AND(X2>=S2+10%,X2<S2+20%),1,"")
PHP:
=IF(X2>=S2+20%,1,"")
PHP:
=IF(AND(S2<=80%,X2>=S2+20%),1,"")
The 3 pivot tables I create reflect projects 10-20% behind schedule, projects over 20% behind schedule, and projects 80% or less complete and over 20% behind schedule.
Column S is “work completed” and column X is “time used”.
This seemed to be working okay but I recently noticed that if a project was 80% or less complete and over 20% behind schedule one week but caught up and is now only 20% behind schedule it still shows up on the pivot table that is was less than 80% complete (for that former week).
I would like projects to only show up on one pivot table at a time.
This seems really complicated to try to explain. I have a way of removing completed projects or projects that are no longer behind for any reason, but if a project is no longer behind on one pivot table (say it was over 20% behind last week, but it has moved to 10% this week) I only want to see it on the pivot table for projects that are 10-20% behind.
I'm really not sure if this is possible and that's why I'm here