I currently have a sheet where I am trying to organize tasks by milestone. I am trying to create two columns for Next Milestone Task Name and Date. I have my Next Milestone Date and part of my Next Milestone Name. I want the column with Next Milestone Name to fill every row in that column unlike how it is now. Here is what I have written so far.
Helper Column
=IF(AND(OR(Status@row = "In Progress", Status@row = "Under Review", Status@row = "Not Started", Status@row = "On Hold"), Milestone@row = 1), [Due Date]@row, "")
Next Milestone Date
=MIN([Helper Column]:[Helper Column])
Next Milestone Name
=IF(AND(Milestone@row = 1, [Due Date]@row = [Next Milestone Date]@row), INDEX([Task Name]@row, MATCH([Next Milestone Date]@row, [Due Date]@row)))
Also, another issue arises when there are two milestones with the same date. How can I prioritize the Task Name that comes first in descending row order?