Select dt empty rows - The source contains no DataRows

Hi @etasca

Check out this tutorial

Another way You can try with Try catch activity

In the Try → Use the Assign activity

Dt = dt.Rows.Cast(Of DataRow)().Where(Function(row) Not row.ItemArray.All(Function(field) field Is DBNull.Value Or field.Equals(“”))).CopyToDataTable()

Inside the Catch → Use Assign activity

dt = New dataTable

Regards
Gokul