Forum home » Delegate support and help forum » Microsoft VBA Training and help » vba courses london - Is there a way to speed up macros
vba courses london - Is there a way to speed up macros
Resolved · Low Priority · Version Standard
Priya has attended:
Excel VBA Intro Intermediate course
Is there a way to speed up macros
I have macro that takes about 4-5 minutes to run and I wanted to find out if there is a way to speed this process up. Is this an excel problem or a hardware problem
For upcoming training course dates see: Pricing & availability
RE: Is there a way to speed up macros
Speed up code and stop screen flickering:
type at the begin of the macros
Application.ScreenUpdating=False
'Your code here.
Application.ScreenUpdating=True
|
