I have tried multiple Nested If statements to achieve this result:
This is my ultimate goal:
If “Date of Last Contact” is blank then return blank.
If it is not, then if “Days Since Contact” is <3 then return “ Less Than 3 Days
”
If it is not, then if “Days Since Contact” is <5 then return “ Almost More than 5 Days
”
If it is not, then if “Days Since Contact” is >5 and Status Does Not = Revisit Later then “ Greater Than 5 Days
”
If Status = “Revisit Later” and “Days Since Contact” is >30 then Time To Revisit
If not then leave blank.
IF({Date of Last Contact} = BLANK(),BLANK(),IF({Days Since Contact}<=3,“ Less Than 3 Days
”,IF({Days Since Contact}<=5,“
Almost More than 5 Days
”, IF(AND({Days Since Contact}>5,{Status}NOT(“Revisit Later”), “
Greater Than 5 Days
”, IF(AND({Status} = “Revisit Later”, {Days Since Contact}<30, BLANK(),IF (AND({Status}=“Revisit Later”, {Days Since Contact}>30,“
Time To Revisit
” ))))))))