Hi,
I wanted to pass condition statement within the case stement,
In Below script I am trying to change path width using case stament
width=sel_path~>width
case(width
(width<0.2) : sel_path~>width=0.2
(((width>=0.2) && (width<0.5): sel_path~>width=0.5
(((width>=0.5) && (width<1): sel_path~>width=1
);end case
Can please correct this script