How to get 10 records at a time in a txt or xlsx list

Hi @Rodrigo_Buch,

With this assign, you can get your first 10 row of txt file.

arrFirstTenRow = Split(strText,Environment.NewLine).Take(10)

If you want to write side by side, you can use this assign after above.

String.Join(“”, arrFirstTenRow)

Regards
Ömer

1 Like