Aug 02, 2021 05:46 AM
Hello guys,
I’m just getting started with Airtable formulas and couldn’t find the right formula for this scenario and will be grateful if you could help here.
I’ve 2 columns when based on the value on column A I want to determent if to display a value of column A or column B in the D column.
= If column A contains 1 or 2 or 3, then display the value of column A, if contain Y, display value of column B
Thanks
Solved! Go to Solution.
Aug 02, 2021 07:09 PM
You have an extra comma. Remove the comma after {Workplace}
and before the closing parenthesis.
You have multiple syntax issues with this formula, include issues with extra spaces after your function names, curly quotes, and missing parenthesis.
Try this …
IF(
OR(
FIND("Office", {Workplace}),
FIND("Hybrid", {Workplace})
),
{Company - Location},
IF(
FIND("Remote", {Workplace}),
{Workplace}
))
Aug 02, 2021 06:35 AM
It would be something along these lines:
IF(OR (FIND (“1”, {Column A}), FIND (“2”, {Column A}), FIND (“3”, {Column A})), {Column A},
IF(FIND(“Y”, {Column A}), {Column B}))
Aug 02, 2021 07:04 AM
@Jarvis_Digital hanks but I’ve tried this and didn’t work.
Can you have a look?
IF(OR (FIND (“Office”, {Workplace}), FIND (“Hybrid”, {Workplace}),{Company - Location},
IF(FIND(“Remote”, {Workplace}), {Workplace}))
Aug 02, 2021 09:22 AM
You’re missing a closing parenthesis for the OR()
statement.
If “Office”, “Hybrid”, and “Remote” are the whole values of the field {Workplace}
you could simplify the formula by using a SWITCH()
statement.
SWITCH(
{Workplace},
"Office", {Company - Location},
"Hybrid", {Company - Location},
"Remote", {Workplace}
)
Edited to remove extra comma.
Aug 02, 2021 03:36 PM
Where exactly?
It didn’t work as well…
I’m running out of ideas…
Aug 02, 2021 04:28 PM
The formula you pasted looks like this: OR(FIND(), FIND()
. It needs to look like this: OR(FIND(), FIND())
Be more specific. It produced an error and wouldn’t let you save the formula? Its not showing the desired result?
Aug 02, 2021 07:09 PM
You have an extra comma. Remove the comma after {Workplace}
and before the closing parenthesis.
You have multiple syntax issues with this formula, include issues with extra spaces after your function names, curly quotes, and missing parenthesis.
Try this …
IF(
OR(
FIND("Office", {Workplace}),
FIND("Hybrid", {Workplace})
),
{Company - Location},
IF(
FIND("Remote", {Workplace}),
{Workplace}
))
Aug 02, 2021 07:12 PM
Good 'ol syntax issues, lol
Aug 03, 2021 08:36 AM
Thank you. It does the job perfectly!