I have a table of TASKS that links to a table of PROJECTS. There’s a one to many relationship between PROJECTS and TASKS.
Each TASK has a status - todo, doing, and done.
I want to create a field that will say “complete” when every task is has a status of “done”.
So far I tried making a rollup on the PROJECTS table with OR(), but I’m getting stuck.
Is what I’m asking for possible? How would I do it? Thanks a million.