View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
hfazal hfazal is offline
external usenet poster
 
Posts: 22
Default Stop the loop when found.

I have the below comparison between two columns. Where the cells match, and a
different comparison of an different cell pair on the same row also matches,
it highlights a row and fills in a cell using data from its matching cell. My
problem is that, I want it so that once it's found a match, it should stop
the loop and go on to the next item in the range.

Hope someone can help.

For Each rcellIm In rngIm.Cells
For Each rcellDt In rngDt.Cells
If InStr(1, rcellDt.Value, rcellIm, vbTextCompare) Then
If rcellDt.Offset(0, 2) = rcellIm.Offset(0, 10) Then
rcellDt.Offset(0, 5) = rcellIm.Offset(0, 3)
rcellIm.EntireRow.Interior.ColorIndex = 35
End If
End If
Next rcellDt
Next rcellIm

Thanks
--
H