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