cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

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