disable conditional formatting

  • Thread starter Thread starter carlslack
  • Start date Start date
C

carlslack

Hi,

I am using VBA code to populate cells from a large list. These cell
affect worksheet functions with conditional formatting. However, thi
conditional formatting is leading to unacceptably slow performance.

Can conditional formatting be temporarily disabled (during cod
execution), then enabled (when the code has completed)?

I've tried toggling Application.ScreenUpdating, but this still doesn'
help.

Any suggestions?

Thanks in advance,
-C
 
have you tried
Application.Calculation = xlManual

' current code

Application.Calculation = xlAutomatic
 

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