Hi,
I have 4 column (Name,Service,Salary,DOB).Now check Service Column row is empty Delete entier row.(entier row means name ,service, salary, DOB)
Regards
Hi,
I have 4 column (Name,Service,Salary,DOB).Now check Service Column row is empty Delete entier row.(entier row means name ,service, salary, DOB)
Regards
Hi @MD_Farhan1
Can you try this linq query:
(From row In dtInput.AsEnumerable()
Where Not String.IsNullOrEmpty(row.Field(Of String)("Service"))
Select row).CopyToDataTable
Regards
Hi @MD_Farhan1
Try using Filter datatable activity
DT.AsEnumerable() _
.Where(Function(row) Not String.IsNullOrWhiteSpace(row.Field(Of String)("Service"))) _
.CopyToDataTable()
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.