How do I get a row on a Gantt chart to show the earliest date from amongst a set of predecessors?
I have a gantt chart where I want one row to display a 0-duration task with the earliest start date from amongst five predecessors. I've entered them as start-to-start predecessors, so in theory it should start when the earliest of them starts, but in practice it takes the latest date instead.
Ideally, I'd use a MIN() function to collect the date, but you can't have formulae in start or end date columns anymore. I'd also ideally nest them together under the same parent, but the whole reason I have to do this is because these rows are nested in amongst other rows I don't want to count.
I can get the latest date just fine using finish-to-finish, but the earliest is stumping me. Is there a way to get that value that I'm just missing