Hi all,
Trying to create a (complicated) IF statement. The idea is that we want to flag if a client hasn’t been contacted in a while, but we have different catagories of contacting. And just becuase the client hasn’t been contacted using one method doesn’t mean they haven’t been contacted using another. Essentially, our contact catagories are tiered and I need a formula that understands that:
If the contact date in the ‘Initial Contact’ column is >=5 days from todays date, it should be flagged via the test “Needs Follow Up” UNLESS any of the other contact catagories have dates in them.
It looks like this at the moment, but it’s not working:
IF(DATETIME_DIFF(TODAY(), {Contact Date}, ‘DAYS’) >=5, “Needs Follow Up!”, IF(DATETIME_DIFF(TODAY(), {TWO WAY DATE}, ‘DAYS’) >=15, ‘Needs Follow Up!’, IF(DATETIME_DIFF(Today(), {Demo Date}, ‘DAYS’) >=30, “Needs Follow Up!”, IF(DATETIME_DIFF(TODAY(), {PROPOSAL DATE}, ‘DAYS’) >=10, “Needs Follow Up!”, “”
We have the following catagories, however we rank them like this (lowest to highest)
- Initial Contact
- Two-Way contact
- Demo
- Proposal
I need the formula to understand that if all columns are populated by a date, it should only pay attention to the “Proposal” column. Having a date in 'Proposal" trumps the date in “Demo”, which trumps the date in “Two-Way”, which trumps the date in “Initial Contact”
Hope this makes sense! Thanks in advance for the help!!