hi all
I have recorded a macro, but was wondering if there was anyway of running it without actually running through the macro. What I mean is that as soon as I use the macro you can see it skipping through all of the cells and then end on the last cell I clicked, so what i'm asking is: is it possible to run the macro but without seeing any of this happen?
The macro I recorded is:
The macro involves copying all of the cells and pasting them into a new set of cells on the same worksheet. After the macro has done this is then goes back and deletes all information which was found in the previous cells.
Thanks in advance
Tom
I have recorded a macro, but was wondering if there was anyway of running it without actually running through the macro. What I mean is that as soon as I use the macro you can see it skipping through all of the cells and then end on the last cell I clicked, so what i'm asking is: is it possible to run the macro but without seeing any of this happen?
The macro I recorded is:
Code:
Range("G15:H21").Select
Range("H21").Activate
Selection.Copy
Range("G6:H12").Select
Range("H12").Activate
ActiveSheet.Paste
Range("J15:K21").Select
Range("K21").Activate
Application.CutCopyMode = False
Selection.Copy
Range("J6:K12").Select
Range("K12").Activate
ActiveSheet.Paste
Range("M15:N21").Select
Range("N21").Activate
Application.CutCopyMode = False
Selection.Copy
Range("M6:N12").Select
Range("N12").Activate
ActiveSheet.Paste
Range("P15:Q21").Select
Range("Q21").Activate
Application.CutCopyMode = False
Selection.Copy
Range("P6:Q12").Select
Range("Q12").Activate
ActiveSheet.Paste
Range("P15:Q21").Select
Range("Q21").Activate
Application.CutCopyMode = False
Selection.ClearContents
Range("M15:N21").Select
Range("N21").Activate
Selection.ClearContents
Range("J15:K21").Select
Range("K21").Activate
Selection.ClearContents
Range("G15:H21").Select
Range("H21").Activate
Selection.ClearContents
The macro involves copying all of the cells and pasting them into a new set of cells on the same worksheet. After the macro has done this is then goes back and deletes all information which was found in the previous cells.
Thanks in advance
Tom