Hello, I am trying to use an IF formula to change a Priority Column based on a Service Start Date.
If the Service Date is within 30 days, Priority column would change to High.
If the Service Date is within 40 days, Priority column would be Medium.
If the Service Date is over 50 days, Priority column would be Low.
The Priority Column is set up as a dropdown list, "Low, Medium, High."
Service Date Column is set up as Date.
Here is the formula I was trying to use:
=IF(AND([Service Date]@row, [Priority]@row) < [Due Date] (30), "High", IF(AND([Service Date]@row, [Priority]@row > [Due Date] (40), "Medium", IF(AND([Service Date]@row, [Priority]@row) > [Due Date] (50)"Low"))
Thank you!
Mandy