I need to find a string "c =", and the cell that I'm looking for, has the value of "c = 0.32". The problem is that in the same range, I have a cell with the value of "blablac = 54", which comes first, and the
Dim x as Integer
x = Find("c =", MatchCase:=True).row
function, returns that one instead of the "c = 0.32" one. How can I tell the find function to look for the string in the beginning of the cell values, so that I can obtain the right value?