I am currently copying and pasting a range. The problem I am having is that once the macro has run I am left with the range still selected. How do I remove the green rectangle..."deselect"?? The code I am using is:
For x = 0 To 10
Range("O" & (34 - x) & ": V" & (34 - x)).Copy
NextRow = ("O" & (35 - x) & ": V" & (35 - x))
Range(NextRow).Select
ActiveSheet.Paste
Next x
I have tried:
Application.CutCopyMode = False
But this doesn't seem to work.
I would really appreciate some help! Thanks!