We run an intake process within a main sheet where people submit ideas (say there are 5 statuses). When it reaches a particular status (say status 2), the main sheet pushes that row to another sheet where we track a sub process. When that subprocess is complete, we manually go back to the main sheet and switch the status to the next one.
We're trying to make this as transparent to users who have submitted ideas and using the API to put it on a dedicated microsite, so I'm trying to optimize this as much as possible. The main issue I'm running into is that subprocess complicating things, as nothing pushes back from there, so I don't have a single source of truth, as that subprocess is being displayed as well, for example:
- Status 1 - complete
- Status 2 - in progress
- Process 1 (checked off)
- Process 2 (not checked off)
- Process 3 (checked off)
- Status 3 - not started
Is running a report and having the API pull from there make the most sense? If so, how would I remove the duplications since it's a copied row? Or is there something easier that I'm not thinking about? Maybe it's just pulling from two sheets?