Hey all,
I am relatively new to using Airtable and I need some help getting these two formulas to work together (they work fine on their own) in 1 field so I can keep track of shipping dates based on 2 conditions. My ultimate ship date needs to always return the Saturday date 3 weeks after the original date {RFP Request Date}. If there is no attachment in {RFP Print} and no date in {RFP Request Date}, I want it to show a blank cell. If one of those cells is filled in, then I don’t mind it returning an #ERROR! . Also how do you remove the time stamp for the formula since I do not need it?
Current Field setups since I cannot add screenshots
{RFP PRINT} = Attachments
{RFP Request Date} = Date
{IFTT} = Formula (1st listed below) - Ultimately need this to become my Shipping Date.
{Field 21} = Formula (2nd listed below)
In column {IFTT} I have :
IF(
{RFP Print}!=’’,
DATEADD({RFP Request Date},3,‘weeks’), “”)
If column {Field 21} I have :
DATEADD({RFP Request Date}, 6-IF(WEEKDAY({RFP Request Date})=0, 6, WEEKDAY({RFP Request Date})), ‘day’)
Thanks!