I'm fairly new to Smartsheet and need to provide a due date based on the most recent response received from a vendor. I've got the formula for the column working for the first 2 scenarios below, but am having trouble getting the correct syntax to calculate dates when responses 3 & 4 are received.
These are all in the same row of the Smartsheet, and the chart shows the 4 potential scenarios.
Here's what I have so far for the first two scenarios.
=IF(ISBLANK([Response 2]@row), [Response 1]@row + 14, [Response 2]@row+14
Due Date Scenarios:
If Responses 4, 3, 2 are blank and 1 is not blank, due date shows Response 1 + 14 days.
If Responses 4, 3 are blank, and 2, 1 are not blank, due date shows Response 2 + 14 days.
If Response 4 is blank, and 3, 2, 1 are not blank, due date shows Response 3 + 14 days.
If Response 4 is not blank, due date shows Response 4 + 14 days.
Thanks in advance!