cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Samuel11
Level I

Delete whole row if one cell is missing

I am trying to reduce the number of rows.
I need a function where if Column 3 have any empty cell , it will delete the whole row.
here is a picture of the table 
in this case Column 3 name is (Row 4)

Samuel11_0-1579740843062.png

 

1 REPLY 1
txnelson
Super User

Re: Delete whole row if one cell is missing

names default to here(1);
dt = current data table();
dt << select where(:Row 4 == "" );
dt << delete rows;
Jim

Recommended Articles