J
JOHN
I have gotten to this point with the great input from others here, and
I'm looking to tweek this a little more.
Below is a copy of one of my macros. I want it to copy and paste A5:V5
into any selected cell.
When I click on the macro button it copies the row and allows me to
right click and paste it in any selected cell, but it leaves the view on the
source row of the macro.
Is there any change I can make to the code to eliminate it from moving
the view to the source row, and do all the steps without right
clicking-paste?
In short I am looking to just select a cell, click on the macro, have
it execute and remain on the selected cell.
Sub JOHN()
'
' JOHN Macro
Range("A5:V5").Select
Application.CutCopyMode = False
Selection.Copy
'Sub S_Copy()
ActiveCell.Value = Range("A5").Value
ActiveSheet.Paste
End Sub
I'm looking to tweek this a little more.
Below is a copy of one of my macros. I want it to copy and paste A5:V5
into any selected cell.
When I click on the macro button it copies the row and allows me to
right click and paste it in any selected cell, but it leaves the view on the
source row of the macro.
Is there any change I can make to the code to eliminate it from moving
the view to the source row, and do all the steps without right
clicking-paste?
In short I am looking to just select a cell, click on the macro, have
it execute and remain on the selected cell.
Sub JOHN()
'
' JOHN Macro
Range("A5:V5").Select
Application.CutCopyMode = False
Selection.Copy
'Sub S_Copy()
ActiveCell.Value = Range("A5").Value
ActiveSheet.Paste
End Sub