Just wondering how to use the look up range activity get the address of the cell containing the search word. The cell contents should match entirely. For example, I have three values in the below column
ATMPD - Let say this is found C11
AT - This found in C12
ATE - This one in C13
ATS - This in C14
Lets say if my keyword is AT and the exact match is C12. But the lookup range gives C11 as AT is also part of ATMPD. How to get the exact match in look up range?
index = (dtRead.Rows.IndexOf(dtRead.AsEnumerable().Where(Function(row) row(“Description”).ToString.Equals(“Schedule”)).ToArray()(0))+1).ToString
where “Description” should be your column name and “Schedule” will be the string you want to search.