Espero estés realmente bien.
Te paso un código que hace lo que vos estas solicitando.
Sub Macro2()
Application.ScreenUpdating = False
Application.DisplayStatusBar = True
Application.StatusBar = "GrupoBio® informa: Se está iniciando un proceso interno. Por favor espere."
Rows("17:17").Select
Selection.Insert Shift:=xlDown
Range("C17").Select
ActiveCell.FormulaR1C1 = "=SUM(R[-15]C:R[-1]C)"
Range("C17").Select
Selection.Font.Bold = True
Range("A17").Select
ActiveCell.FormulaR1C1 = "SUBTOTAL"
Range("A17").Select
Selection.Font.Bold = True
Rows("33:33").Select
Selection.Insert Shift:=xlDown
Range("C33").Select
ActiveCell.FormulaR1C1 = "=SUM(R[-15]C:R[-1]C)"
Range("C33").Select
Selection.Font.Bold = True
Range("A17").Select
Selection.Copy
Range("A33").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Range("C48").Select
ActiveCell.FormulaR1C1 = "=SUM(R[-14]C:R[-1]C)+R[-15]C+R[-31]C"
Range("A48").Select
ActiveCell.FormulaR1C1 = "TOTAL "
Range("A48:C48").Select
Selection.Font.Bold = True
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True, IgnorePrintAreas:=False
Rows("17:17").Select
Selection.Delete Shift:=xlUp
Rows("32:32").Select
Selection.Delete Shift:=xlUp
Rows("46:46").Select
Selection.Delete Shift:=xlUp
Range("a1").Select
Application.ScreenUpdating = True
Application.StatusBar = "GrupoBio® informa: Proceso interno finalizado con éxito."
End Sub