Welcome to the Airtable Community! If you're new here, check out our Getting Started area to get the most out of your community experience.
Sep 30, 2019 10:08 PM
Hi wonder if there is anyone who can help. I am trying to make a deadline field. I need a formula that adds a certain amount of time to the created date if another field has a certain word in it.
hope this makes sense
Oct 01, 2019 03:41 AM
Hi @richard_snell - try this (adds 10 days):
IF(
{Your word field} = 'Your special word',
DATEADD({Date}, 10, 'days')
)
JB