View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Keith74 Keith74 is offline
external usenet poster
 
Posts: 120
Default Excel VBA process increases exponentially with more records toprocess

A quick solution may be to put

Application.screenupdating = false

at the start of the process, and

Application.screenupdating = true

at the very end.

hth

Keith