Why not just record a macro copying, then goto the other sheet and Paste Special-->Values?
Once you trim the select statements out you should get something like this:
ActiveSheet.Range("P7:P12").Copy
Sheets("Sheet2").Range("I113").PasteSpecial xlPasteValues
HTH,