Hi @Krithi1
Before going for filter datatable just check if datatable has any rows in it or not.
You can check that by using assign activity
rowCount = dt.Rows.Count
If rowCount > 0
Message Box: "Put your Filter condition here"
Else
Message Box: "No Rows in datatable"
Hope this helps ![]()