J
Joe H II
I am trying to create a macro to start on sheet1, copy a cell that th
user will input a # into, go to sheet3, search for that #, and i
found, cut and paste that row from sheet3 into a new row in sheet2. I
the # is not found, it needs to be pasted into the appropriate cell i
a new row on sheet2
My problem is that when I'm recording the macro and go to sheet3 an
perform the "find" function and paste the # from sheet1, it looks fo
the exact #; not a cell reference (see Example)
Range("B6").Select
Selection.Copy
Sheets("3 Historical").Select
Cells.Find(What:="PRK04070", After:=ActiveCell, LookIn:=xlFormulas
_
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext
_
MatchCase:=False).Activate
End Su
user will input a # into, go to sheet3, search for that #, and i
found, cut and paste that row from sheet3 into a new row in sheet2. I
the # is not found, it needs to be pasted into the appropriate cell i
a new row on sheet2
My problem is that when I'm recording the macro and go to sheet3 an
perform the "find" function and paste the # from sheet1, it looks fo
the exact #; not a cell reference (see Example)
Range("B6").Select
Selection.Copy
Sheets("3 Historical").Select
Cells.Find(What:="PRK04070", After:=ActiveCell, LookIn:=xlFormulas
_
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext
_
MatchCase:=False).Activate
End Su