You pretty much have the formula; you just need to change the wording slightly. :winking_face:
Here’s the formula for {ColumnA}
.
IF(
{ColumnB},
{ColumnB},
{ColumnC}
)
Essentially, that says
IF(
{ColumnB}, // exists, then make {ColumnA} equal to
{ColumnB},
// else if {ColumnB} does not exist, make {ColumnA} equal to
{ColumnC}
)
(Note: Airtable currently will not accept formulas with comments; instead, copy-and-paste the first version into the formula configuration field.)
You pretty much have the formula; you just need to change the wording slightly. :winking_face:
Here’s the formula for {ColumnA}
.
IF(
{ColumnB},
{ColumnB},
{ColumnC}
)
Essentially, that says
IF(
{ColumnB}, // exists, then make {ColumnA} equal to
{ColumnB},
// else if {ColumnB} does not exist, make {ColumnA} equal to
{ColumnC}
)
(Note: Airtable currently will not accept formulas with comments; instead, copy-and-paste the first version into the formula configuration field.)
Thank you very much. I’ll do this. Thanks for your help!
You pretty much have the formula; you just need to change the wording slightly. :winking_face:
Here’s the formula for {ColumnA}
.
IF(
{ColumnB},
{ColumnB},
{ColumnC}
)
Essentially, that says
IF(
{ColumnB}, // exists, then make {ColumnA} equal to
{ColumnB},
// else if {ColumnB} does not exist, make {ColumnA} equal to
{ColumnC}
)
(Note: Airtable currently will not accept formulas with comments; instead, copy-and-paste the first version into the formula configuration field.)
Perfect! Thank you again!