Hello Gliders,
I have a Project Management app with the following google sheets
- Projects - sheet has Row ID’s
- Tasks - each task has its own task row id. It links back to the projects sheet with the Project ID. So a project can have multiple tasks.
- The Tasks sheet also has a column for milestones. Milestones can be Prep, Plant or Harvest.
I want to be able to show a summary of the following dates for each project.
- Project Start, Project End,
- Prep Start, Prep End,
- Plant Start, Plant end
I was able to get the project start date by setting a multiple relation between Project and Tasks in my Project sheet. I then used lookup on this multiple relation to get all dates for the project. Then using a single value column pick the first date from the Date lookup for project start date.
And here’s where I am stuck. I can’t figure out how to get the prep, plant and harvest start dates because I don’t know how to select values from the date lookup using a criteria for e.g. select the first date from the multiple relation which matches the milestone “plant”.
Maybe there is a better way to go about this. Hoping to receive some guidance. Thankyou in advance.