Copy from 1 sheet to another

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have some data on my main sheet and I want some of it to be automatically
copied onto another sheet. I have got it to work, using a macro, but my
screen flickers when it jumps to sheet 2 and back again. Is there a way of
not having the 'flicker'?
 
Hi SDeVuyst,

Try:
Application.ScreenUpdating = False
'Your code
Application.ScreenUpdating = True

Or, better still, rewrite you code to avoid making selections or switching
sheets.
 

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