Firstly may I say thanks to any members willing to take a look at my problem,
which is, I have recorded a macro to copy the content's from a range of cells
and paste them into a new sheet, then return to the original cell (D7) which is
a merged cell (D7:F7) , end of record.
The problem is, it has copied the content's fine but it has also removed the contents
from the selected cell (D7), therefor there must be something in the code telling it
to delete (D7).
This macro is a lot longer then this so I have only pasted the code below which I think
is relevant.
Many Thanks to anybody that can point me in the right direction.
CrashMatRob.
Range("D7:F37").Select
Selection.Copy
Sheets("Stat's").Select
Range("C" & Cells(Rows.Count, "C").End(xlUp).Row + 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("C2").Select
Sheets("2 Player").Select
Range("H7:J37").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Stat's").Select
Range("F" & Cells(Rows.Count, "F").End(xlUp).Row + 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("F2").Select
Sheets("2 Player").Select
Range("D7:F7").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = ""
Range("D7:F7").Select
Bookmarks