Jan 06, 2021 02:35 PM
Hi, I hope I’m posting in the right place. Brand new to Airtable. My goal is to set up a CRM for networking that will remind me when to reach out. My plan:
I am really not well versed with formulas or functions so I have no idea how to set this up.
Can anyone help me? Thank you!
Jan 06, 2021 02:49 PM
Welcome to the Airtable community!
You want a formula field. You will need the DATEADD()
function.
You can convert the rating into the number of days to by either multiplying the rating times 30, or you can use a SWITCH()
function.
To check if the record is over due, use another formula field that compares the due date with TODAY()
.
These functions are documented in the Formula Field Reference.
For record coloring, see this support article.
Jan 07, 2021 03:33 AM
Something like this?
"Next date"
SWITCH(Rating,1,DATEADD({Most recent contact},30,"days"),2,DATEADD({Most recent contact},60,"days"),3,DATEADD({Most recent contact},90,"days"))
"Overdue?"
IF({Next date}<TODAY(),"yes","no")