The general structure of the formula you’re looking for is
IF(
OR({Field A} = "Yes", {Field B} = "Si", {Field C} = "容易 - Yes"),
"Yes"
)
If you wanted to use nested IF()s, that format would look like:
IF(
{Field A} = "Yes",
"Yes",
IF(
{Field B} = "Si",
"Yes",
IF(
{Field C} = "容易 - Yes",
"Yes"
)
)
)
The first formula should be all you need, but you said it may need to get more complicated later so it may be good for you to see how to properly nest IF() statements.
Thanks so much Kamille, that worked. Can you help me with one more step for more complex ones? So I’m trying to add these two formulas in one.
1)IF(OR({Gender}=“Female”, {Gender CHINESE}=“女性”,{Gender SPANISH}=“mujer”),“Women”)
2) IF(OR({Gender}=“Male”, {Gender CHINESE}=“男性”,{Gender SPANISH}=“masculino”),“Man”)
I’ve tried a couple of combinations and it wont seem to work. Ex:
- CONCATENATE(IF(OR({Gender}=“Female”, {Gender CHINESE}=“女性”,{Gender SPANISH}=“mujer”),"Women”)),IF(AND({Gender}=“Male”, {Gender CHINESE}=“男性”,{Gender SPANISH}=“masculino”),“Man”)))
Do you have any suggestions of what I should do to combine those two formulas?
Thanks so much Kamille, that worked. Can you help me with one more step for more complex ones? So I’m trying to add these two formulas in one.
1)IF(OR({Gender}=“Female”, {Gender CHINESE}=“女性”,{Gender SPANISH}=“mujer”),“Women”)
2) IF(OR({Gender}=“Male”, {Gender CHINESE}=“男性”,{Gender SPANISH}=“masculino”),“Man”)
I’ve tried a couple of combinations and it wont seem to work. Ex:
- CONCATENATE(IF(OR({Gender}=“Female”, {Gender CHINESE}=“女性”,{Gender SPANISH}=“mujer”),"Women”)),IF(AND({Gender}=“Male”, {Gender CHINESE}=“男性”,{Gender SPANISH}=“masculino”),“Man”)))
Do you have any suggestions of what I should do to combine those two formulas?
Your CONCATENATE() technically should work if you use OR() instead of AND() and put your parenthesis in the right places.
Here is where you would nest your IF()s. The format of a nested IF() statement is shown above. If you wanted to keep your formulas as simple as possible that would be:
IF(
OR({Gender}="Female", {Gender CHINESE}="女性",{Gender SPANISH}="mujer"),
"Women",
IF(
OR({Gender}="Male", {Gender CHINESE}="男性",{Gender SPANISH}="masculino"),
"Man"
)
)
Note: Grammatically, “Women” should probably be “Woman” since you’ve written “Man” and not “Men”