How to Filter data table from specific time given?

Hi @punya ,

Could you try the Below Linq Query using Assign Activity :

arrayRow = DT.AsEnumerable.Where(Function(x)CDate(x("Posting Time").ToString)>new DateTime(CDate(x("Posting Time").ToString).Year,CDate(x("Posting Time").ToString).Month,CDate(x("Posting Time").ToString).Day,16,0,0)).ToArray

Here, DT is the Datatable variable read from the Excel Sheet using Read Range Activity, arrayRow is a variable of type Array of DataRow.

Follow the Post Below to Convert Array of Rows / List of Rows to Datatable for Handling Exceptions.