This content has been marked as final.
Show 2 replies
-
1. Re: Create
Deepak RaiNov 1, 2018 12:04 PM (in response to Venkat S)
How can you add One product to 2 groups. I would like to learn.
-
2. Re: Create multi-category field from same value(s)
Venkat S Nov 1, 2018 12:17 PM (in response to Deepak Rai)My Bad above is wrong example. Basically I am want to analyze combine effect of different product combinations
Here is case script:
CASE [Product]
WHEN "Product A" THEN "Comb A+B+C"
WHEN "Product B" THEN "Comb A+B+C"
WHEN "Product C" THEN "Comb A+B+C"
WHEN "Product B" THEN "Comb B+C+D"
WHEN "Product C" THEN "Comb B+C+D"
WHEN "Product D" THEN "Comb B+C+D"
WHEN "Product C" THEN "Comb C+D+E"
WHEN "Product D" THEN "Comb C+D+E"
WHEN "Product E" THEN "Comb C+D+E"
END