Hello-
I saw this formula for creating SKU’s based off of Single Selects and codes:
SWITCH(
{Product Category},
“Mural”, “MUR”,
“Magnets”, “MAG”
) & “-” &
SWITCH(
{Class},
“Economy”, “EC”,
“Deluxe”, “DX”,
“Premium”, “PM”,
“Platinum”, “PT”
) & “-” &
SWITCH(
{Substrate},
“Canvas”, “CN”,
“Wood”, “WD”
) & “-” &
SUBSTITUTE({Size}, " x ", “”) & “-” &
SUBSTITUTE({Product Name}, " ", “”)
My Question is: Is there a way to not specifically call out the IF selected in the field types, basically what ever you select becomes the “CODE” - because I have thousands of selections that would not work here - would take me forever to write and I don’t want to have to add new ones as the new parts come in - make sense?