Remove row in collection

Marck12

New Member
this statement returning the rows which are having status ‘PV’. so you have to modify it something like this for your requirement
DataTable.Select("[COLUMN 1]=’’ OR [COLUMN 2]=’’")
and if null values you have then you can use like this:
DataTable.Select("[COLUMN NAME] is null");
and then you can easily inside for each loop, can use Remove data row activity. to know more about this plz visit at my page:
https://www.cetpainfotech.com/technology/MS-SQL-Server-Training
 
Top