Is there a way to rewrite a vlookup based on activecell?
=VLOOKUP("activecell",Sheet1!A:B,2,FALSE)
where in it picks up value from the active cell?
Is there a way to rewrite a vlookup based on activecell?
=VLOOKUP("activecell",Sheet1!A:B,2,FALSE)
where in it picks up value from the active cell?
Right click on your worksheet and put something like this:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("A1") = ActiveCell.Value
End Sub
change A1 to any blank cell and refer to that cell in your formula.
HTH
JG
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks