from
to
from
to
Can you please confirm if you are looking to delete the row where the data column is empty? Is this your requirement?
Best Regards.
yes @arjunshenoy
if current datarow contains βAβ, then delete next datarow if it is empty/blank @arjunshenoy
You can use the following query to skip such rows from the datatable:
dt.AsEnumerable.Skipwhile(Function(row) string.IsNullorEmpty(row(βDataβ).ToString)).CopyToDatatable
Here, dt will be your datatable & this query will discard the rows where data column is empty.
Hope this helps,
Best Regards.
You can design your workflow like this:
Input:
Output:
Hope this helps,
Best Regards.
Check this wokflow. It matches your requirement.
DeleteNextRow.xaml (11.8 KB)
Input
Output
Hope this helps.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.