I am using the following macro to find a selected range, however the macro only copies the first cell from the 'find' statement not the entire range that is highlighted. Any ideas?
Sub Macro4()
'
' Macro4 Macro
' Macro recorded 9/25/01 by hclark
'
Cells.Find(What:="broker", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False).Activate
SendKeys "+({end}{down})", False
SendKeys "+({end}{right})", False
Selection.Copy
End Sub
Sub Macro4()
'
' Macro4 Macro
' Macro recorded 9/25/01 by hclark
'
Cells.Find(What:="broker", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False).Activate
SendKeys "+({end}{down})", False
SendKeys "+({end}{right})", False
Selection.Copy
End Sub