I'm using this to try and identify which row a cell values appears on another sheet;
Dim YourVariable As VariantDim rowCount As Integer
Set YourVariable = Sheet21.Range("B2").Value
With ActiveSheet.Range("A:A")
Set uRng = .Find(YourVariable, , xlValues, xlWhole, , MatchCase:=False...