- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
List of values
Hello
I tried to select a list of values PINTest and PVT, in the column.
If I do them one by one, I succussed in selecting each one separately.
But if I do it by list, JMP didn't find the value,
can you explain where I did go wrong in my script?
dt << Select Where (:"TEST DOMAIN" == {"PINTest","PVT"});
dt << Delete Rows ( );
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: List of values
The Contains() function will allow you to do what you want.
names default to here(1);
dt=current data table();
dt<<select where(contains({"PINTest","PVT"},:TEST DOMAIN));
dt << delete rows();
Jim
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: List of values
The Contains() function will allow you to do what you want.
names default to here(1);
dt=current data table();
dt<<select where(contains({"PINTest","PVT"},:TEST DOMAIN));
dt << delete rows();
Jim