Right now I have the Priority column populating by a formula in the "Scheduled Start Date" field using this formula. =IF(ISBLANK([Scheduled Start Date]@row), 0, IFERROR(WORKDAY([Scheduled Start Date]@row - 1, [Scheduled Duration]@row), ""))
I've made a report that groups the tasks by the priority column. I also have a "Follow up" column. some tasks will just have a start date, others will need a start date and a follow up date. Is there a way to have the priority symbol change based on which ever of the two (Scheduled Start Date or Follow up) is earlier? keeping in mind the follow up date may be blank.