Jul 31, 2020 09:46 AM
As you can tell by my question, I am new to Airtable :slightly_smiling_face:
How do I rewrite this formula so it does not result in …#ERROR when I don’t have dates in some the cells used in the calculation? I would rather have that cell remain blank until I have all my dates entered into my table. Thank you!
DATEADD({Speaking Date},-1,‘days’)
Solved! Go to Solution.
Jul 31, 2020 06:52 PM
I noticed that the quotes used in the formula that you have in your post, are not the straight ones. You may want to check that you are using the correct quotes.
The formula that @kuovonne used are the correct ones.
Just thought I would help. Hope you don’t mind.
Mary Kay
Jul 31, 2020 06:17 PM
Welcome to the Airtable community,
To avoid the dreaded #ERROR
, wrap your formula in an IF
that checks for values in the input fields.
IF({Speaking Date},
DATEADD({Speaking Date},-1,'days')
)
Jul 31, 2020 06:52 PM
I noticed that the quotes used in the formula that you have in your post, are not the straight ones. You may want to check that you are using the correct quotes.
The formula that @kuovonne used are the correct ones.
Just thought I would help. Hope you don’t mind.
Mary Kay
Aug 03, 2020 09:52 AM
Thank you so much!!!