Private Sub Worksheet_Change(ByVal Target As Range)
Select Case Target.Address
Case "$A$3"
If Target.Value > 100 Then
Application.ActivePrinter = "PDFCreator auf Ne00:"
ActiveSheet.PageSetup.PrintArea = "$E$8:$G$12"
ActiveSheet.PrintOut
ActiveSheet.PageSetup.PrintArea = False
Application.EnableEvents = False
Target.ClearContents
Application.EnableEvents = True
End If
Case Else
End Select
End Sub