I am thinking this should be easy but can't seem to figure it out and would really appreciate some help. In working with our customers, we first create an estimate with the goal of turning it to a work order if the customer decides to make a purchase. I have a column entitled 'Estimate Creation Date', and I want to have my 'Needs Attention' column checked if a certain amount of time has gone by and the job is still an estimate and we have not followed up with the customer. Likewise, I have a column entitled 'Last Follow-up Date', and I also want a checkmark to show up in 'Needs Attention' if a certain amount of days have passed from the date showing in 'Last Follow-up Date'. My problem is this... There is no date in 'Last Follow-up Date' until we have followed up with a customer, and that is throwing off my formula, because 'Needs Attention' is getting checked even when my 'Estimate Creation Date' is today's date or something very recent. The formula I have so far is this...
=IF(AND(ISBLANK([Last Follow-up Date]150), ISBLANK([Work Order Date]150), [Estimate Creation Date]150 < TODAY() - 21, [General Interest Level]150 <> "Decisive Selections Made"), 1, IF(AND(ISBLANK([Work Order Date]150), [Last Follow-up Date]1 < TODAY() - 21, [Building Phase]150 <> "Beginning"), 1, IF(AND(ISBLANK([Work Order Date]150), [Last Follow-up Date]150 < TODAY() - 45), 1)))
I hope this makes sense what I am trying to do. Basically, as long as 'Last Follow-up Date' cell is blank, it throws off my whole formula, and I don't know how to resolve. Can someone please help me with this?
Randy