T
teeb
I'm using the following to find text in cells:
Sub Find()
Cells.Find(What:=Range("D3").Value, After:=ActiveCell, _
LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:= _
xlByRows, SearchDirection:=xlNext, MatchCase:= _
False).Activate
End Sub
The formula works if it only text in the cell. What if the text is the
same only as a result of the formula in the cell, the above doesn'
work
I take it there is no match as above is looking at the formula in th
cell and not the text? Is there any way it can to changed to recognis
the text and not the formula
Sub Find()
Cells.Find(What:=Range("D3").Value, After:=ActiveCell, _
LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:= _
xlByRows, SearchDirection:=xlNext, MatchCase:= _
False).Activate
End Sub
The formula works if it only text in the cell. What if the text is the
same only as a result of the formula in the cell, the above doesn'
work
I take it there is no match as above is looking at the formula in th
cell and not the text? Is there any way it can to changed to recognis
the text and not the formula