Yep, you would do that with Rollup fields in your “Projects” table.
You’d Rollup the Linked “Tasks”, the “Due Date” field from the “Tasks” table, and you’d use a different Rollup function for each…
For the “Start Date” Rollup field in your “Projects” table you’d use:
MIN(values)
to return the smallest (earliest) date value from the “Due Date” field of your “Tasks” table.
For the “End Date” Rollup field in your “Projects” table you’d use:
MAX(values)
to return the largest (latest) date value from the “Due Date” field of your “Tasks” table.
Yep, you would do that with Rollup fields in your “Projects” table.
You’d Rollup the Linked “Tasks”, the “Due Date” field from the “Tasks” table, and you’d use a different Rollup function for each…
For the “Start Date” Rollup field in your “Projects” table you’d use:
MIN(values)
to return the smallest (earliest) date value from the “Due Date” field of your “Tasks” table.
For the “End Date” Rollup field in your “Projects” table you’d use:
MAX(values)
to return the largest (latest) date value from the “Due Date” field of your “Tasks” table.
Hi Jeremy,
Wow amazing thank you so much!!! :grinning_face_with_big_eyes:
Regards
T
Yep, you would do that with Rollup fields in your “Projects” table.
You’d Rollup the Linked “Tasks”, the “Due Date” field from the “Tasks” table, and you’d use a different Rollup function for each…
For the “Start Date” Rollup field in your “Projects” table you’d use:
MIN(values)
to return the smallest (earliest) date value from the “Due Date” field of your “Tasks” table.
For the “End Date” Rollup field in your “Projects” table you’d use:
MAX(values)
to return the largest (latest) date value from the “Due Date” field of your “Tasks” table.
Hi Jeremy,
One more question please. When I add a new Project in the Project tab how can this be automatically added into the Tasks tab as a new Project line. Right now I’m having to manually add each project into the Tasks tab which can be confusing when other have added in a new Project.
Thanks very much for your help.
T