G
Gerard Sanchez
Question:
'This macro selects, highlights, and print range A18:I69;
'I want to do away with highlighting the specified range and just
immediately print range A18:I69.
Sub PrintBatch()
'
' PrintBatch Macro
' Prints Each Batch
'
Range("A18:I69").Select
Selection.PrintOut Copies:=1
End Sub
'Thanks!
'This macro selects, highlights, and print range A18:I69;
'I want to do away with highlighting the specified range and just
immediately print range A18:I69.
Sub PrintBatch()
'
' PrintBatch Macro
' Prints Each Batch
'
Range("A18:I69").Select
Selection.PrintOut Copies:=1
End Sub
'Thanks!