Hi I have a dynamic range of cells that contain information belonging in another table. I'm trying to use the WorksheetFunction.Match to find the row position in the other table but I keep getting returned the same value.
Batches is the reference table range.
Code:
For i = 2 To NumOfRows
[INDENT] Worksheets(2).Range("R" & i).Value = _
Application.WorksheetFunction.Match("Q" & i, Batches)[/INDENT]
Next I
Batches is the reference table range.