Hi everyone! First time posting. Appreciate your help!
I need your help in writing a formula that operates like this:
(Assume CATEGORY is a single select field.)
If CATEGORY = A, B, C, or D, then X
If CATEGORY = E, F, G, or H, then Y
If CATEGORY = I, J, K, OR L, then Z
I think a SWITCH formula would do the trick, but I’d like the result (X, Y or Z) to come from a single select field.
What I want to avoid is having to type out X, Y or Z multiple times. For example, here’s what I have now, which works but is not efficient:
SWITCH(
{CATEGORY},
“A”, “X”,
“B”, “X”,
“C”, “X”,
“D”, “X”,
“E”, “Y”,
“F”, “Y”
ETC.
)
Thoughts? Thanks!