Hi all,
I have the above code which successfully looks up a unique value in the range on the wParts worksheet. However, the row which the value appears on then has to be deleted. Is there a way to discover the row on which the value was found?
Phil
Code:
Item = Val(ItemNo.Caption)
Description = Application.WorksheetFunction.VLookup(Item, _
wParts.Range("$B$2:$B" & LastRW), 1, False)
I have the above code which successfully looks up a unique value in the range on the wParts worksheet. However, the row which the value appears on then has to be deleted. Is there a way to discover the row on which the value was found?
Phil