Your lookup range is not correct for a VLOOKUP... in a VLOOKUP the criteria must exist in the leftmost column of the range... your range utilises the .UsedRange of the 2nd sheet which is A:K but the ID number you wish to find is in Column E not A -- hence the VLOOKUP returns an error.
I have to go offline now but you could think about using an INDEX/MATCH approach, ie replace:
found = Application.VLookup(findmain, r, n3, False)
with
found = Application.Index(r.Columns(11),Application.Match(findmain,r.Columns(5),0))
Bookmarks