Hi all,
I’m building a CRM and have a field for ‘Contact Frequency’ set as ‘Single select’ with 7, 14, 30, 90 as options.
I have a roll up field with ‘Most Recent Interaction’ which pulls from an ‘Interactions’ table.
I would like to create a field to automatically mark as ‘Overdue’ anyone who’s ‘Contact Frequency’ has been exceeded.
Some searching uncovered a formula which I have tried to adapt no doubt with a glaring error!
I suspect that my ‘Contact Frequency’ options are perhaps not in the correct format or need a separate field to convert them into the correct format before a formula can use them?
IF({Contact Frequency}=””,””,IF(DATETIME_DIFF(TODAY(),{Most Recent Interaction},’days’)>{Contact Frequency},“Overdue”))
Any help would be greatly appreciated!