cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
AT
AT
Level V

Delete rows of an empty column

I like to delete the rows of a table when a colum is empty. Here is the script:

dt = Current Data Table();

dt << select where (:A == ""));

dt << delete rows;

 

No rows gets deleted. Please help. Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
cwillden
Super User (Alumni)

Re: Delete rows of an empty column

try dt << Select Where(Is Missing(:A)); 


This works for character and numeric data types.

-- Cameron Willden

View solution in original post

2 REPLIES 2
cwillden
Super User (Alumni)

Re: Delete rows of an empty column

try dt << Select Where(Is Missing(:A)); 


This works for character and numeric data types.

-- Cameron Willden
AT
AT
Level V

Re: Delete rows of an empty column

Thanks for quick reply. It works fine now.