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
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