Hi, i selected a value in a list thanks to a window, this value is keep in a variable.
i would like now to select the lines in my data table which correspond to this value, how can i do ?
here my script :
value = {"1","2","3","4"};
New Window( "window",
Outline Box( "example",
H List Box( Text Box( "select value" ), listvalues= list Box(value, nlines(4))),
Button Box( "OK",
value = (listvalues << Get selected);
nw << Close Window;)
)
);
dt << Select Where(variable== value);
thanks for your help !