
Sub anteprimastampa()
Selection.End(xlToLeft).Select
Selection.End(xlUp).Select
Application.ScreenUpdating = True
Range(ActiveCell.Offset(3, 0), ActiveCell.Offset(70, 4)).PrintPreview
ActiveCell.Offset(72, 1).Range("A1").Select
End Sub |
Sub anteprimastampa2()
Selection.End(xlToLeft).Select
Selection.End(xlUp).Select
Application.ScreenUpdating = True
Range(ActiveCell.Offset(3, 0), ActiveCell.Offset(70, 4)).Select
Application.Dialogs(xlDialogPrinterSetup).Show
End Sub |
