Find row number based on value

Hello Team,
I want to find row number of a specific value,Please guide.
Thanks

@Mayyur- you an try
dtable.Rows.IndexOf(dtable.AsEnumerable().Where(Function(row) row(0).ToString.Contains(“SEARCHWORD”)).ToArray()(0))+1).ToString

1 Like

Hello,

I have a tutorial for you. It shows how you get the row index based on a searched value. I hope it will help you!

Tutorial Get Row Index

BR