Nov 21, 2019 04:51 PM
Hi, I need for CRM to create a formula where it is 20 days after the the last day I add a contact with that person. How to do that?
Thanks!
Nov 22, 2019 03:38 AM
Welcome to the community, @Paulo_Calisto! :grinning_face_with_big_eyes: The DATEADD() function will do what you want. Let’s say you have a date field named {Last Contact}
. Your formula for something like a {Next Contact}
field would be:
DATEADD({Last Contact}, 20, "days")
More details here:
Nov 25, 2019 06:24 PM
Thanks a lot @Justin_Barrett !