Not knowing a lot about macros, I have edited this on (below) it responds to the "Run" instruction in the Maco tool but not to the assigned shortcut "Ctrl+Shift+V"
Also, since it is close to the parent macro, can the separate worksheets be structured so that only the one relevant to that worksheet operatres (Iseem to find all macros when I look at the Tool)>
Regards and anticipated thanks.
Sub Copyandmerge()
'
' Copyandmerge Macro
' Macro recorded 12/10/2004 by .
'
' Keyboard Shortcut: Ctrl+Shift+V
'
Cells.Select
With Selection
.Orientation = 0
.AddIndent = False
.ShrinkToFit = False
.ReadingOrder = xlContext
.MergeCells = False
End With
Range("A1").Select
ActiveSheet.Paste
End Sub
Also, since it is close to the parent macro, can the separate worksheets be structured so that only the one relevant to that worksheet operatres (Iseem to find all macros when I look at the Tool)>
Regards and anticipated thanks.
Sub Copyandmerge()
'
' Copyandmerge Macro
' Macro recorded 12/10/2004 by .
'
' Keyboard Shortcut: Ctrl+Shift+V
'
Cells.Select
With Selection
.Orientation = 0
.AddIndent = False
.ShrinkToFit = False
.ReadingOrder = xlContext
.MergeCells = False
End With
Range("A1").Select
ActiveSheet.Paste
End Sub