Helo,
i need to delete rows form table if “0” is there in total column.
check below tble
i am filterring table using filter data table using filter “total” = “0”


but getting same output as original data

if i use "contains"instead of “=” then it is removing that row also where values are like 100 / 250 which i dont want.
adiijaiin
(Aditya Jain)
2
Hi @Mathkar_kunal
In the filter data Table wizard,
Add more condition with OR logic
“Total” = 0
(zero should be without Double quotes)
Can you please try.
Thanks
1 Like
supriya117
(Supriya Allada)
3
HI @Mathkar_kunal
By using linq query:
(From row In yourDataTableVariable.AsEnumerable()
Where row.Field(Of Integer)("total") = 0
Select row).CopyToDataTable()
issue got solved but still update me where to write this query
supriya117
(Supriya Allada)
5
@Mathkar_kunal
In assign activity and the output is datatable.
system
(system)
Closed
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.