Selecting rows with specific data
Hi all,Is it possible to select something specific in rows? How can it be done? I tried creating a list and incorporate it in Select Rows () but doesn't work. For example, in column Make, I want to select all the rows with BMW, Hyundai and Nissan.dt = Open( "$SAMPLE_DATA/Cars.jmp" ); What I tried:rows = {"BMW", "Hyundai", "Nissan"};dt << Select Rows (rows); It doesn't work. Please help