I would like to compress these 3 Lines into 1
    Sheets("Sheet2").Select
    
    Cells(27, 1).Select
    
    ActiveSheet.Paste
My attempt was
Sheets("Sheet2").Cells(27,1).Paste
But i was getting a error 438
"object does not match the method or property."
Any idea how i could compile this in 1 line?
 
    