Read Next Row in excel file

Hello

I want to read the next row in a special column.
To read a row i use an assign like sRow = row(“Matricule”).ToString
but i want to read the next row in same time.

can you help me
thankks

You can use index say current row index is CurInd=1
Like Dt.Rows(CurInd+1)(Column No)

Indexing can be done using counter or using for each row indexing

Hola, intente eso mismo que dijiste, pero me salta el siguiente error
“row(indexrow)(“CP”).ToString”.
Option Strict On no permite el enlace en tiempo de ejecución"

CP es la columna que quiero que compare.

Que puedo hacer?