I have the following columns: Start Date, End Date, Baseline Start Date, Baseline End Date, all of which start out as blank, are date type fields.
Once a Start Date is populated, if the Baseline Start Date is blank, it should update with the Start Date
Once the Baseline Start Date is populated, it should not change
I would do the same thing with End Date and Baseline End Date
I tried these 3 formulas, but I get errors.
- =IF(ISBLANK([Baseline Start Date]@row), [ Start Date]@row, [Baseline Start Date]@row) - returns #unparseable
- =IF(NOT(ISBLANK([Baseline Start Date]@row), [ Start Date]@row, [Baseline Start Date]@row) - returns #unparseable
- =IF([Baseline Start Date]@row="", [Start Date]@row, [Baseline Start Date]@row) - returns invalid column value
Any suggestions on how to get this to work?