Question
Traffic Light Attribute Implementation
Hello everybody,
I have a very short question about generating a new attribute including a traffic light. I have created a new integer attribute with the following formula behind:
(state.state == “CANCELLED”) ? 0 : (state.state == “INWORK”) ? 1 : (state.state == “RELEASED”) ? 2 : 3
But when I try to save the changes I get the following warning: "Value entered for Formula is invalid."
What am I doing wrong here?
Many thanks!

