Hi,
I have an error found in our Activity,
I have an excel file, Read all Data from activity display all data in Write Line. One by One,
I am stuck in that point, I want to delete a Complete Row, According to our Condition,
I want to delete those Rows in Which (0) are shown,
Please let me know as soon as possible
Thanks in advance
use assign and pass this expression
dt=dt.AsEnumerable.Where(Function(a) not a.ItemArray.any(Function(b) b.ToString.Equals(“0”))).CopyToDataTable
refer the below xaml
Sequence1.xaml (8.1 KB)
is this your are expecting ?