OK, in general, this will write values from one sheet to another:
CODE
Sub test()
Set srcSht = Sheets("Sheet1")
Set tgtSht = Sheets("Sheet2")
'will copy A1 to A1
tgtSht.[a1] = srcSht.[a1]
'will copy data in column A to column C
tgtSht.Range("C1:C" & srcSht.[a65536].End(3).Row) = _
srcSht.Range("A1:A" & srcSht.[a65536].End(3).Row).Value
End Sub
Hit Alt + F11, Insert => Module paste the code there and experiment with it.
Hope this helps for the start
Martin