Data extraction from excel file

Hello @Surya_Pawar

Welcome to UiPath community…!

You can sue Read Range activity to get the data from excel to a Datatable variable.
Then use the below expression.

myDataTable.AsEnumerable().Skip(skipRows).Take(5).CopyToDataTable

Thanks