Find First Cell without a Certain Value

  • Thread starter Thread starter RyanH
  • Start date Start date
R

RyanH

This code works fine, I just wanted to put this out there to see what other
people use. Is there a faster more efficient way to return the row number of
the first row that does not contain "Archive" or "Ready" in Col.M?


' find first row without Archive or Ready
lngFirstRow = 3
Do While .Cells(lngFirstRow, "M") = "Archive" Or .Cells(lngFirstRow,
"M") = "Ready"
lngFirstRow = lngFirstRow + 1
Loop
 
I don't know if this is faster, but it is another way to loop through and
find the cell.

For Each c In Range("M2:M" & Cells(Rows.Count, 13). _
End(xlUp).Row)
If c.Value <> "Archive" And c.Value <> "Ready" Then
fRng = c.Address
MsgBox c.Address
Exit For
End If
Next
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top