Thread: Searching
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
LC[_3_] LC[_3_] is offline
external usenet poster
 
Posts: 9
Default Searching

Hi,

I am very confused why this code doesn't work. In the
watch window the text value is the same as the
line1.offset value but the if statements is never excuted.

For Each line1 In Category.Cells
If (line1.Offset(0, 1).Value = text) Then
TotalExist = True
Exit For
End If
Next line1

Thank you in advance,
LC