View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
whisperer whisperer is offline
external usenet poster
 
Posts: 1
Default Requesting advice on VLOOKUP alternative.

To switch off the screen updating place the following line at the start
of your sub with its counterpart as the last line of your sub.

Application.ScreenUpdating = False
...
Application.ScreenUpdating = True

HTH:)