Option Explicit
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Sheets("Tabelle1").PageSetup.BlackAndWhite = True
Application.OnTime Now + TimeSerial(0, 0, 2), "PrinterZurueckstellen"
End Sub
kommt als Code in ein Modul
Option Explicit
Sub PrinterZurueckstellen()
Sheets("Tabelle1").PageSetup.BlackAndWhite = False
End Sub
Gruß Tino