Put this in ThisWorkbook.
Code:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
    With Sheets("INITIATING DEVICES")
        .PageSetup.PrintArea = .Range("A1:H" & .Cells(Rows.Count, 1).End(xlUp).Row).Address
    End With
End Sub