I want to look up one value in sheet1 that will have a matching value in sheet2, I have to walk through each cell value and highlight matches.
Here's my code:
Application.VLookup(Range(myRcdA).Value, Range("A3535"), 3, False)
Range(myRcdA) will have data in sheet1, I need to match that to data in sheet2. The issue I think I'm having is setting the Range("A3535") to sheet2 somehow. I've tried Range.Sheets, Sheets("sheet2").Range("A3535") but no luck.
This is probably a simple fix but I'm stumped. Anyone have any ideas?
Here's my code:
Application.VLookup(Range(myRcdA).Value, Range("A3535"), 3, False)
Range(myRcdA) will have data in sheet1, I need to match that to data in sheet2. The issue I think I'm having is setting the Range("A3535") to sheet2 somehow. I've tried Range.Sheets, Sheets("sheet2").Range("A3535") but no luck.
This is probably a simple fix but I'm stumped. Anyone have any ideas?