I have a scenerio where i need to find a particular value in a datatable column and if the value is found in the column i need to get the row index of that row from the datatable.
How can i acheive this …can anyone please help me to resolve this
For Each Row activity:
For each row In DtOperacoes
If row(“ColumnName”).ToString() = “ValueToFind” Then
Assign activity:
rowIndex = DtOperacoes.Rows.IndexOf(row)
Break
End If
Next