Sub CopyRange()
Dim sourceRng As Range
Dim destRng As Range
On Error Resume Next
Set destRng = Application.InputBox("Where do you want to paste to?", "Destination range", , , , , , 8)
On Error GoTo 0
If destRng Is Nothing Then Exit Sub
'What do we copy?
Set sourceRng = Worksheets("Out-put (Lay-up & PB)").Range("D7:D11")
Application.ScreenUpdating = False
'Perform the copy/paste
sourceRng.Copy
destRng.PasteSpecial xlPasteValues
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub