Hi there,
Struggling a bit with an If/then formula to create a series of priorities.
Priority 1: Date is within 21 days OR Aging is more than 300 days
Priority 2: Date is within 35 days OR Aging is less than 299 days
Priority 3: Date is within 56 days OR Aging is less than 199 days
Priority 4: Date is greater than 56 days OR Aging is less than 100 days
The formula I put together is the following, but is only yielding 1's and 2's, even though the data set should also be yielding 3's and 4's.
=IF(OR([QA Disposition Date]@row < TODAY(21), Aging@row > 300), "1", IF(OR([QA Disposition Date]@row < TODAY(35), Aging@row < 299), "2", IF(OR([QA Disposition Date]@row < TODAY(56), Aging@row < 199), "3", IF(OR([QA Disposition Date]@row > TODAY(56), Aging@row < 100), "4"))))
Thanks so much!