Forum Discussion
Cumulative Unfinished Projects
Hi,
I need both a bar graph and the underlying details (in a table) to show projects when they started until they finish, carrying over unfinished projects into the next quarter.
Basically the data looks at the original status, the new status and reflects the status until something changes. I can figure out a measure but cannot seem to generate a table that will give me projects until they reach done. I am assuming that we are still in Q3 2023. Can anyone please help me out? Thanks
| Project | Fiscal Year Quarter Start | Fiscal Year Quarter Completed | Status | New Status |
| A | 2022 Q2 | 2022 Q4 | In Progress | Done |
| B | 2022 Q3 | Not Started | ||
| Results Table | ||||
| Project | Fiscal Year Quarter | Status | ||
| A | 2022 Q2 | Progress | ||
| A | 2022 Q3 | Progress | ||
| A | 2022 Q4 | Done | ||
| B | 2022 Q3 | Not Started | ||
| B | 2022 Q4 | Not Started | ||
| B | 2023 Q1 | Not Started | ||
| B | 2023 Q2 | Not Started | ||
15 Replies
- lbendlinSuper User
Your source data is not in a usable format. Should be more like
Project Fiscal Year Quarter Status A 2022Q2 In Progress A 2022Q4 Done B 2022Q3 Not Started Once you have that you can use a disconnected table with your quarters and for each quarter calculate the latest recorded status for each project.
- AnonymousNot applicable
Thanks, could you expand a bit more once I have those two tables? I just struggle with how to get the results in a table versus a simple bar graph. I really need the results table to show each quarter for each unfinished project. Thanks
- lbendlinSuper User
- Ashish_MathurSuper User
- AnonymousNot applicable
This is amazing. Thanks you! The final add is to get a count and sum of count if the value is populated. I cannot get the has one filter to work with these relationships.
Thanks
Brendan
- lbendlinSuper User
what would the expected result look like?
- AnonymousNot applicable
Fiscal Year Quarter Project Status Count 2022Q1 A 0 2022Q1 B 0 2022Q2 A In Progress 1 2022Q2 B 0 2022Q3 A In Progress 1 2022Q3 B Not Started 1 2022Q4 A Done 1 2022Q4 B Not Started 1 2023Q1 A 0 2023Q1 B Not Started 1 2023Q2 A 0 2023Q2 B Not Started 1 2023Q3 A 0 2023Q3 B Not Started 1 2023Q4 A 0 2023Q4 B Not Started 1 Total 9
- AnonymousNot applicable
Okay, I originally tried to do two queries (1 a max per quarter per project and 1 per data and then tried to filter out only the matches. I am still am left with the original issue of how to carry over the unfinished projects.
The Filter would just give you the active projects in a quarter so I don't see how that really complicates things but if I didn't give the option to filter, how would you approach it?