Is it possible to select a sheet to print with a range within that cell to print
'TUNNEL-B SIDE
Private Sub Worksheet_Calculate()
If Range("E10").Value >= 186 Then
Application.EnableEvents = False
Workbooks.Open Filename:="DIV F-SHIPPING.xls"
Sheets(1) ("A2:AR83"). PrintOut
ActiveWorkbook.Close False
Application.EnableEvents = True
End If
I'm not sure how to add this range to this event I know this dosen't.
any help appreaciated K
'TUNNEL-B SIDE
Private Sub Worksheet_Calculate()
If Range("E10").Value >= 186 Then
Application.EnableEvents = False
Workbooks.Open Filename:="DIV F-SHIPPING.xls"
Sheets(1) ("A2:AR83"). PrintOut
ActiveWorkbook.Close False
Application.EnableEvents = True
End If
I'm not sure how to add this range to this event I know this dosen't.
any help appreaciated K