I am once again, asking for your assistance with a calculated custom field
I have a custom field called E-Comm Request Type with the field choices of NPI, Promo, GCX Campaign, SKU Refresh, and New Retail Setup. I'm trying to do a calc field that will combine these options into two categories Revitalized or New. I've quadruple-checked my calculation below and cannot figure out what I'm missing. PLEASE HELP!
IF(E-Comm Request Type="NPI"
,"Revitalized"
,IF(E-Comm Request Type="Promo"
,"Revitalized"
,IF(E-Comm Request Type="GCX Campaign"
,"Revitalized"
,IF(E-Comm Request Type="SKU Refresh"
,"New"
,IF(E-Comm Request Type="New Retail Setup"
,"New"
)
)
)
)
)
I also tried a version with unexpected value:
IF(E-Comm Request Type="NPI"
,"Revitalized"
,IF(E-Comm Request Type="Promo"
,"Revitalized"
,IF(E-Comm Request Type="GCX Campaign"
,"Revitalized"
,IF(E-Comm Request Type="SKU Refresh"
,"New"
,IF(E-Comm Request Type="New Retail Setup"
,"New"
,"UNEXPECTED VALUE: E-Comm Request Type = [" + E-Comm Request Type + "]"
)
)
)
)
)
