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}))
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}))
@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}))
@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}))
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.
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.
Where exactly?
It didn’t work as well…
I’m running out of ideas…
Where exactly?
It didn’t work as well…
I’m running out of ideas…
Shneor:
Where exactly?
The formula you pasted looks like this: OR(FIND(), FIND()
. It needs to look like this: OR(FIND(), FIND())
Shneor:
It didn’t work as well
Be more specific. It produced an error and wouldn’t let you save the formula? Its not showing the desired result?
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.
You have an extra comma. Remove the comma after {Workplace}
and before the closing parenthesis.
Shneor:
IF(OR (FIND (“Office”, {Workplace}), FIND (“Hybrid”, {Workplace}),{Company - Location},
IF(FIND(“Remote”, {Workplace}), {Workplace}))
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}
))
You have an extra comma. Remove the comma after {Workplace}
and before the closing parenthesis.
Shneor:
IF(OR (FIND (“Office”, {Workplace}), FIND (“Hybrid”, {Workplace}),{Company - Location},
IF(FIND(“Remote”, {Workplace}), {Workplace}))
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}
))
Good 'ol syntax issues, lol
You have an extra comma. Remove the comma after {Workplace}
and before the closing parenthesis.
Shneor:
IF(OR (FIND (“Office”, {Workplace}), FIND (“Hybrid”, {Workplace}),{Company - Location},
IF(FIND(“Remote”, {Workplace}), {Workplace}))
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}
))
Thank you. It does the job perfectly!