Welcome to the community, Janet! :grinning_face_with_big_eyes: I see a few possible error points in your formula:
-
There can be no space between IF and its opening parenthesis. IF is a function, and all of Airtable’s functions require that the function name be immediately adjacent to its opening parenthesis.
-
You’ve got extra parentheses wrapped around certain parts of the IF function. The basic IF function syntax is:
IF(condition, result-if-true, optional-result-if-false)
-
I’m guessing that “Subscription Yr1” is a field name. Because it contains spaces, it needs to be wrapped in curly braces (it’s kinda handy that this rule rhymes :winking_face: )
-
You need to remove the space at the start of your ’ years’ specifier, or else DATEADD won’t recognize it. This won’t throw an error, but it just won’t calculate the addition.
With these changes, the formula should look like this:
IF({Impl /Sched Fee} = {Subscription Yr1}, DATEADD({Inv Date}, 3,'years'), "None")
Thank you so much this worked great!