C
cornishbloke
I am trying to create a cell in sheet1, into which I can enter a
person's name that appears in column B of sheet2. After entering the
name I want to be able to press a button which then takes you to the
name entered in Sheet2.
So far the closest i've got is to record the following macro: -
Range("C5").Select
Selection.Copy
Sheets("Sheet2").Select
Cells.Find(What:="testname", After:=ActiveCell, LookIn:=xlFormulas,
_
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext,
_
MatchCase:=False).Activate
instead of "testname" is it possible for this to reference whatever
value has been entered in the search cell?
I would be grateful for any pointers.
person's name that appears in column B of sheet2. After entering the
name I want to be able to press a button which then takes you to the
name entered in Sheet2.
So far the closest i've got is to record the following macro: -
Range("C5").Select
Selection.Copy
Sheets("Sheet2").Select
Cells.Find(What:="testname", After:=ActiveCell, LookIn:=xlFormulas,
_
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext,
_
MatchCase:=False).Activate
instead of "testname" is it possible for this to reference whatever
value has been entered in the search cell?
I would be grateful for any pointers.