Sheets("Median_make").Select
Range("B3").Copy
Range("H4").PasteSpecial xlPasteValues
Application.CutCopyMode = False
Sheets("Median_make").Select
Range("E3").Copy
Range("K4").PasteSpecial xlPasteValues
Sheets("Median_make").Select
Range("D3").Copy
Sheets("Median_make").Range("J4").PasteSpecial xlPasteValues
Application.CutCopyMode = False
I am trying to copy cell values from the same worksheet but somehow it doesn't work. It would only paste one value out of the three. I am very new to this, any help would be much appreciated.