Operator with conditional value
Hi,
I have an attribute named order_status with 4 possible values: cancelled, pending, processing and processed
and I would like to generate a new attribute named 'label'
with this condition:
if (order_status = 'cancelled' or 'pending')
value = 'purchased'
THEN
value = 'not purchased'
Any advice will be appreciate
I am not sure what operator to use and how to implement this condition
Thank you
Find more posts tagged with
Sort by:
1 - 3 of
31
Use the 'generate attributes' operator with a suitable if then else. You're very close with your example.
Regards,
Andrew