Dear All,
Is there a way to quickly insert 1 job number into Excel 2007 table?
Is there a way to quickly insert 1 job number into Excel 2007 table?
Code:
'Speeding Up VBA Code
With Application
.ScreenUpdating = False 'Prevent screen flickering
.Calculation = xlCalculationManual 'Preventing calculation
.DisplayStatusBar = False
.DisplayAlerts = False 'Turn OFF alerts
.EnableEvents = False 'Prevent All Events
End With
some code
'Speeding Up VBA Code
With Application
.ScreenUpdating = True 'Prevent screen flickering
.Calculation = xlAutomatic 'Preventing calculation
.DisplayStatusBar = True
.DisplayAlerts = True 'Turn OFF alerts
.EnableEvents = True 'Prevent All Events
End With