Jun 27, 2023 07:29 AM
hello,
I have a project tracking tool in airtable and am trying to track project status over time. basically a cumulative chart of projects open and closed over time, something similar to this:
Basically, I need a collum with time another with running totals for open projects, and another for closed projects, and then chart these. Ideally, I would love to have this in an interface chart.
is there a way to achieve this, I have seen similar questions but so far I have not seen a straightforward answer.
Jun 27, 2023 07:56 AM
You could use a separate Status table to track status changes rather than what is most often used - a single select status option within the same table as the projects themselves. In a Status table, which would be connected to your Projects table with a lined record field, you would have fields along the lines of:
You can then chart off of the Status table rather than the projects table. With lookup fields you can pull into the Status table any number of fields that are in your projects table (current status, etc.).
We use something similar to track project notes and also our project invoice schedule.
Hope that helps.
Jun 28, 2023 12:55 AM
Hmm, the only sure thing I can tell you is that you'll probably need a separate table where each record represents a date range of one month and chart off of that; how the data gets populated after that depends heavily on your workflow
For example, you could potentially have an automation that runs once a month and its actions will be:
1. Run a "Find Record" action looking for all the projects that are closed
2. Run a "Find Record" action looking for all the projects that are open
3. Create a new record in the table where each record represents one month with the counts from steps 1 and 2
Jun 28, 2023 01:13 AM
Thank you.
I was trying a simpler solution, although not perfect and not exactly what I had in mind.
I implemented a running total script that does the work of calculating cumulative totals, from additional columns that count status.
However, since Airtable doesn't support building stack charts by adding more than 1 column of data I have to plot in 2 separate charts and not in a single chart.
Would there be a workaround?
Jun 28, 2023 01:25 AM
Thanks for your reply, I see what you mean, something like this?
Project table:
Status Table:
But how do I get the cumulative total through the time chart? If I chart the status table I just get the totals and I lose the date dimension, no?