thomassharp
Board Regular
- Joined
- Dec 10, 2014
- Messages
- 84
Hi is to possible to modify the code to use a range of values from another sheet in the workbook instead of a hardcoded value?
Code:
Sub Macro6()
'
' Macro6 Macro
'
'
Columns("E:E").Select
Selection.find(What:="value", After:=ActiveCell, LookIn:=xlFormulas _
, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
Rows("8702:8702").Select
Range("C8702").Activate
Selection.Copy
Sheets("Sheet4").Select
Rows("2:2").Select
ActiveSheet.Paste
End Sub