I have a campaign work back schedule. I need to calculate four date fields based on the Launch Date:
- Assign Due Date
- Developer Due Date
- QA Due Date
- Approval Due Date
- Launch Date
The number of days for each due date varies based on the combination of two single-select fields:
{Channel}: Email, Push, Banner
{Send Size}: Large, Small
The logic is:
If Email (Channel) and Large (Send size) with Launch Date 6/1/23
- {Assign Due Date} = 6/1, -12 days
- {Developer Due Date} = 6/1, -7 days
- {QA Due Date} = 6/1, -6 days
- {Approval Due Date} = 6/1, -7 days
- {Launch Date} = 6/1
If Push (Channel) and Small (Send size) with Launch Date 6/1/23
- {Assign Due Date} = 6/1, -5 days
- {Developer Due Date} = 6/1, -2 days
- {QA Due Date} = 6/1, -1 days
- {Approval Due Date} = DELETE (or show NA)
- {Launch Date} = 6/1
I'm new to airtable so I hope this isn't a noob question.