Hi @Rachael_Castelaz,
The first step is that you need to consolidate your “Projected” and “Revised” dates into a single field to be Rolled up in the {Upcoming Steps Due Date}
field. So in your Steps table, you need a new Formula field that says:
IF(
{Revised Completion date},
{Revised Completion date},
{Projected completion date}
)
I think for the {Upcoming Step Due Date}
field, you can set your Rollup field to filter for only a subset of records from the linked record field it points to. I assume you are marking steps as “completed” in some way, so you should be able to filter that rollup to show only “non-completed steps”, whatever that might mean in your setup.
Then, you can use the Rollup formula to show the MIN()
date in your new Formula field that was created above, to get the next upcoming date for a “non-completed” step.