How do i go about consolidating this VBA Code for copying and pasting
Code:
Sub Button24_Click()
Sheets("General Information").Select
ActiveWindow.SmallScroll Down:=27
Range("D53:F53").Select
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B3").Select
Sheets("General Information").Select
Range("D55:F55").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B4").Select
Sheets("General Information").Select
Range("D56:F56").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B5").Select
Sheets("FA-PCIF Header").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B6").Select
Sheets("General Information").Select
ActiveWindow.SmallScroll Down:=-27
Range("D17").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B7").Select
Sheets("General Information").Select
Range("E17:F17").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B8").Select
Sheets("General Information").Select
Range("D19").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B9").Select
Sheets("General Information").Select
Range("D12").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B10").Select
Sheets("General Information").Select
ActiveWindow.SmallScroll Down:=9
Range("D33").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B11").Select
Sheets("General Information").Select
Range("D20:K23").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B12").Select
Sheets("General Information").Select
ActiveWindow.SmallScroll Down:=15
Range("D39").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Mechanical Design Summary").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B16").Select
End Sub