Help

Re: Database structure for forecasting analysis

917 0
cancel
Showing results for 
Search instead for 
Did you mean: 
jjl-pdx
5 - Automation Enthusiast
5 - Automation Enthusiast

Hi there... We are trying to use Airtable to forecast workload capacity vs. demand. 

Each project in our forecast has a number of tasks. Each task is assigned a "skill" (the skill required to complete that task), a person-week effort to complete it, and start/end dates. (there's other metadata as well - owners of the tasks, the project each is mapped to, etc)

We want to know the total demand required for each skill for each month, and be able to tweak these numbers to match our capacity (which is the same every month).  I'm starting with a regular list of scheduled tasks like this:

jjlpdx_2-1691008128036.png

I've been able to parse the start/end dates and determine the amount of work required for specific months, to get something like this:

jjlpdx_0-1691008007417.png

However, now my monthly effort data is in columns, which causes all kinds of problems - I can't graph it across all months or pivot on it. Plus, I need to roll this up to the Project level, but only for certain sets of projects (e.g. all projects of a specific type, etc). However, I can't create a dynamic rollup that changes depending on what I need. So, I'm stuck with making a full set of ~15 rollup columns for each need - which is not practical. 

I think what I need is the same data structured like this:

jjlpdx_1-1691008066675.png

But I'm not sure how to get there. Plus even if I could run a script that'd transform my data to look like this, how can I keep this new database updated in real-time so every time a date is changed, this resulting database would reflect those changes? 

Any general ideas about how to approach this, or other completely different approaches that might work better? 

2 Replies 2

Hmm, this is...probably(?) doable with a combination of pretty complicated formulas.  The hardest bit would probably be getting the fraction of work breakdown per month so that we can get the effort; the only way I can imagine doing that is with some kind of huge IS_BEFORE() IS_AFTER () etc for each month

The script option's probably simplest like you said.  You could make it run the script every time you updated one of the values, and the script would:
1. Delete any records linked to the triggering record
2. Do the math of calculating the effort per month, and create one record per month in the date range in another table

This should keep it updated in real time like you want

Thanks, that's at least encouraging that I seem to be on the right track in general. Though, writing scripts to help manage this is probably beyond my capability... or at least would take more time than it's worth for me for this particular problem. 

I wish there was some way you could graph or pivot against a set of columns in Airtable, similar to Excel. That would solve part of the problem.