Trying to achieve an outcome where:
IF Column One is prefixed 381 then Apple
If column one is prefixed 382 then orange
etc
Column 1
381-9287
382-2818
383-2812
Column 2
formula
Thanks!
Trying to achieve an outcome where:
IF Column One is prefixed 381 then Apple
If column one is prefixed 382 then orange
etc
Column 1
381-9287
382-2818
383-2812
Column 2
formula
Thanks!
Best answer by Kamille_Parks11
Cool, thanks!
How would I incorporate SWITCH(LEFT({Column 1}, 2), ‘5v’, ‘Blue’, ) and SWITCH(LEFT({Column 1}, 4), ‘123a’, 'Metal;) into the same formula as the one you wrote out above?
Well its not possible for anything to fit all those conditions so you could just write them all in the same formula separated by an ampersand.
SWITCH(LEFT({Column 1}, 2), '5v', 'Blue')&SWITCH(LEFT({Column 1}, 4), '123a', 'Metal')&SWITCH(LEFT({Column 1}, 3), '381', 'Apple', '382', 'Orange')
A nested IF() statement could also work.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.