Try withOn 2002-07-30 12:18, ExcelNovice wrote:
I included the matter below for someone's assistance. Everything on the macro works well, except that when I run the macro, the content of cells A6:L9 is copied to cell A18. How can I change the macro so that it copies to the cell selected by the user(whatever cell that is)?
See macro below.......
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 7/30/02 by ExcelNovice'
'
Range("A6:L9").Select
Selection.Copy
Range("A18").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Range("A10:A13").Select
End Sub
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 7/30/02 by ExcelNovice'
'
Range("A6:L9").Copy ActiveCell
Range("A10:A13").Select
End Sub


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks