Need help to filter data table

@Venu_V

is your data in excel if yes then you can sort it based on the timestamp column and pick the first row. if not then then use something like

DT.AsEnumerable().OrderBy(Function(row) row.Field(Of DateTime)("ConneectionUptime")).FirstorDefault()

this will give you the timestamp use it to find the matching row in the dt and pick your data from there