-
VBA Code schneller machen
Füge diesen Code in deine Prozedur ein um sie schneller zu machen:
With Application
.ScreenUpdating = False
.Calculation = xlCalculationManual
.EnableEvents = False
End With
'Code hier einfügen:
With Application
.ScreenUpdating = True
.Calculation = xlCalculationAutomatic
.EnableEvents = True
End With
Sorry, there were no replies found.
Log in to reply.