Go To Value as Copied

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I tried to do this one myself numerous times without results. I wanted to go
to the cell containing the same value or text in collumn B Sheet 2, as is
pasted or filled in, in A1 Sheet 1. How can I do so using Macro?

Thanks In Advance!
 
Jasper,

If you want to know which row it was in, use MATCH
If you want to retrieve data from there, look at VLOOKUP

If you want to actually go there:

Dim SearchArg As String
SearchArg = Sheets("Sheet1").Range("A1").Value
Sheets("Sheet2").Select
Range("B1:B5").Find(SearchArg).Select
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top