How can I extract latest data in website?

I wanna extract latest one data
How can I do it?

@toto6343

Use Extract Table Data(Table Extraction), for extracting whole table, you can set in the property Max limit(Result) as 1.
So, that it will extract only first row.

If not then after extraction,

Use a assign activity:

Dt_Extractdatatable = Dt_Extractdatatable.AsEnumerable().Take(1).CopyToDataTable

Using above LinQ you will get only Top 1 row in the datatable!

Regards,
Ajay Mishra