Apr 02, 2023 10:34 AM
I'm struggling to create the right formula and hoping someone here can help me: I have Field 1 as a single select. It's a list of brands with an "Other" option. Field 2 is a write-in field for when Other has been selected. I'm trying to create Field 3 as a formula field that merges the brand names—both the ones selected in Field 1 drop-down and ones written into Field 2. I have the second half working with ...
Solved! Go to Solution.
Apr 02, 2023 10:47 AM
Hey @Dalene_Rovensti!
Here are three formulas that all accomplish what you're looking for:
IF(
{Field 1} = "Other",
{Field 2},
{Field 1}
)
IF(
{Field 1},
SWITCH(
{Field 1},
"Other",
{Field 2},
{Field 1}
)
)
IF(
AND(
{Field 1} = "Other",
{Field 2}
),
{Field 2},
IF(
{Field 1},
{Field 1},
IF(
{Field 2},
{Field 2}
)
)
)
Apr 02, 2023 10:47 AM
Hey @Dalene_Rovensti!
Here are three formulas that all accomplish what you're looking for:
IF(
{Field 1} = "Other",
{Field 2},
{Field 1}
)
IF(
{Field 1},
SWITCH(
{Field 1},
"Other",
{Field 2},
{Field 1}
)
)
IF(
AND(
{Field 1} = "Other",
{Field 2}
),
{Field 2},
IF(
{Field 1},
{Field 1},
IF(
{Field 2},
{Field 2}
)
)
)
Apr 02, 2023 11:50 AM
The first one worked perfectly! Thank you!! I was making that more complicated than I needed to be.