Row(i).Hidden = True flickers

  • Thread starter Thread starter Hannes Heckner
  • Start date Start date
H

Hannes Heckner

Hi
I try show 200 hidden rows. When the macro runs the whole screen starts to
flicker. How can I avoid a repaint after each row(j).hidden=false?
best regards
Hannes
 
Application.Screenupdate=False
and then at the end of the macro
Application.Screenupdate=True
Sergio
 
Try turning screen-updating off, execute code,
then turn screen-updating back on

Application.ScreenUpdating = False
'your code
Application.ScreenUpdating = True
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top