I am trying to calculate the date in a [Due Date] column from the [Date Submitted] based on the [Priority Level]. This is what I have and it is only calculating for the [Priority Level} = Routine. The other cells are blank.
=IF([Priority Level]@row = "Routine", WORKDAY([Date Submitted]@row, 5, IF([Priority Level]@row = "Urgent", DATE([Date Submitted]@row + 2, IF([Priority Level]@row = "Critical", DATE([Date Submitted]@row + 1))))))