Apr 22, 2022 02:40 AM
Hey,
I need to create a formula something like this:
If field_1 = “text_A”, then;
If field_2> field_3, “Text_B”, “Text_C”
Otherwise “Text_D”
I don´t know how to do it and I couldn´t find from community or google…
Anybody?
Thanks
//Mikko
Solved! Go to Solution.
Apr 22, 2022 11:31 AM
Welcome to the Airtable community!
Here’s another possible interpretation.
IF(
{field_1} = "text_A",
IF(
{field_2} > {field_3},
"Text_B",
"Text_C"
),
"Text_D"
)
Apr 22, 2022 09:44 AM
This is a simple nested IF() use case, or a use case for AND(). Search for “nested if” for more examples.
Your example formula can be interpreted one of two ways. I’m not sure if you want to output a semicolon if the first input is true. If so:
IF(
{field_1} = "text_A",
";",
IF(
{field_2} > {field_3},
"Text_B",
"Text_C"
)
)
If not, then:
IF(
AND({field_1} = "text_A", {field_2} > {field_3}),
"Text_B",
"Text_C"
)
Apr 22, 2022 11:31 AM
Welcome to the Airtable community!
Here’s another possible interpretation.
IF(
{field_1} = "text_A",
IF(
{field_2} > {field_3},
"Text_B",
"Text_C"
),
"Text_D"
)
Apr 22, 2022 11:42 AM
Thank you! :pray:
it works nice!
//Mikko